From: Frits van Bommel Date: Wed, 6 Apr 2011 12:29:56 +0000 (+0000) Subject: Fix a few instances of "warning: extra ';' outside of a function [-pedantic]". X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=090771fa26086a72d814f7d47235deb22dac1b05;p=oota-llvm.git 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 --- diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 164177f4977..a1f2fce8bf1 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:: printOptionDiff(const Option &O, StringRef V, OptionValue D,