diff options
author | Frits van Bommel <fvbommel@gmail.com> | 2011-04-06 12:29:56 +0000 |
---|---|---|
committer | Frits van Bommel <fvbommel@gmail.com> | 2011-04-06 12:29:56 +0000 |
commit | 87e3367d329ab91d1971f529dcacba7d2251eb23 (patch) | |
tree | 80cead96c4096a1edfb2713d6cbd640b6f9c4bde /llvm/lib/Support/CommandLine.cpp | |
parent | ba3e6667cce786c47e996376ef211b1033cce663 (diff) | |
download | bcm5719-llvm-87e3367d329ab91d1971f529dcacba7d2251eb23.tar.gz bcm5719-llvm-87e3367d329ab91d1971f529dcacba7d2251eb23.zip |
Fix a few instances of "warning: extra ';' outside of a function [-pedantic]".
llvm-svn: 129002
Diffstat (limited to 'llvm/lib/Support/CommandLine.cpp')
-rw-r--r-- | llvm/lib/Support/CommandLine.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index 164177f4977..a1f2fce8bf1 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/lib/Support/CommandLine.cpp @@ -1140,13 +1140,13 @@ printGenericOptionDiff(const Option &O, const GenericOptionValue &Value, outs() << ")\n"; \ } \ -PRINT_OPT_DIFF(bool); -PRINT_OPT_DIFF(boolOrDefault); -PRINT_OPT_DIFF(int); -PRINT_OPT_DIFF(unsigned); -PRINT_OPT_DIFF(double); -PRINT_OPT_DIFF(float); -PRINT_OPT_DIFF(char); +PRINT_OPT_DIFF(bool) +PRINT_OPT_DIFF(boolOrDefault) +PRINT_OPT_DIFF(int) +PRINT_OPT_DIFF(unsigned) +PRINT_OPT_DIFF(double) +PRINT_OPT_DIFF(float) +PRINT_OPT_DIFF(char) void parser<std::string>:: printOptionDiff(const Option &O, StringRef V, OptionValue<std::string> D, |