From 090771fa26086a72d814f7d47235deb22dac1b05 Mon Sep 17 00:00:00 2001 From: Frits van Bommel Date: Wed, 6 Apr 2011 12:29:56 +0000 Subject: [PATCH] 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 --- lib/Support/CommandLine.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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, -- 2.34.1