From: Chandler Carruth Date: Sun, 29 Jun 2014 22:42:51 +0000 (+0000) Subject: Fix a stray semi-colon. (Found by a pedantic warning) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a59329e276e777523941e6955755dd22f67a467e;p=clang Fix a stray semi-colon. (Found by a pedantic warning) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212003 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 2955489b1e..3587bbb2f5 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -4357,7 +4357,7 @@ static bool maybeConsumeDash(const std::string &EH, size_t &I) { bool HaveDash = (I + 1 < EH.size() && EH[I + 1] == '-'); I += HaveDash; return !HaveDash; -}; +} struct EHFlags { EHFlags() : Synch(false), Asynch(false), NoExceptC(false) {}