From: Benjamin Kramer Date: Thu, 11 Feb 2010 11:33:47 +0000 (+0000) Subject: Remove noisy semicolon. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8aa79947cbf8f0f3ac82cdd36a823ac1bb53cab4;p=clang Remove noisy semicolon. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95872 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/ToolChain.h b/include/clang/Driver/ToolChain.h index 42b3d47c06..9a82973dca 100644 --- a/include/clang/Driver/ToolChain.h +++ b/include/clang/Driver/ToolChain.h @@ -125,7 +125,7 @@ public: virtual bool UseDwarfDebugFlags() const { return false; } /// UseSjLjExceptions - Does this tool chain use SjLj exceptions. - virtual bool UseSjLjExceptions() const { return false; }; + virtual bool UseSjLjExceptions() const { return false; } }; } // end namespace driver