diff options
author | Richard Trieu <rtrieu@google.com> | 2015-01-27 03:03:47 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2015-01-27 03:03:47 +0000 |
commit | 510cadb1c23f823cb4f805b7153ee3b8f13f208a (patch) | |
tree | 0ca76b3f864af1e6973a7b300d632e4d3783f4b0 /include | |
parent | 95647955f95fb0bb07d0bc08043b4f25293f4aac (diff) |
Revert r227148 & r227154 which added a test which infinitely loops.
r227148 added test CommandLineTest.HideUnrelatedOptionsMulti which repeatedly
outputs two following lines:
-tool: CommandLine Error: Option 'test-option-1' registered more than once!
-tool: CommandLine Error: Option 'test-option-2' registered more than once!
r227154 depends on changes from r227148
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227167 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index efa17219585..e53ac06a3cd 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -20,7 +20,6 @@ #ifndef LLVM_SUPPORT_COMMANDLINE_H #define LLVM_SUPPORT_COMMANDLINE_H -#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/Twine.h" @@ -1939,7 +1938,7 @@ void HideUnrelatedOptions(cl::OptionCategory &Category); /// Some tools (like clang-format) like to be able to hide all options that are /// not specific to the tool. This function allows a tool to specify a single /// option category to display in the -help output. -void HideUnrelatedOptions(ArrayRef<const cl::OptionCategory *> Categories); +void HideUnrelatedOptions(SmallVectorImpl<cl::OptionCategory *> &Categories); } // End namespace cl |