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 | 090771fa26086a72d814f7d47235deb22dac1b05 (patch) | |
tree | 83da7db61297ecf2ee61bf97f6189c5dad240428 /lib/Support/CommandLine.cpp | |
parent | d496f88c0c663ec907e411ed7b821c6b20caf1fd (diff) |
Fix a few instances of "warning: extra ';' outside of a function [-pedantic]".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129002 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/CommandLine.cpp')
-rw-r--r-- | lib/Support/CommandLine.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 164177f497..a1f2fce8bf 100644 --- a/lib/Support/CommandLine.cpp +++ b/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, |