From: Chad Rosier Date: Tue, 27 Nov 2012 17:31:26 +0000 (+0000) Subject: Remove an extra semicolon. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8fc6273ed33386f5081f5cd5d30abd339eec030;p=clang Remove an extra semicolon. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168707 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h index 0b86b86b9c..4e0320e929 100644 --- a/lib/Driver/ToolChains.h +++ b/lib/Driver/ToolChains.h @@ -394,7 +394,7 @@ public: std::string ComputeEffectiveClangTriple(const ArgList &Args, types::ID InputType) const; - virtual bool isPICDefault() const { return false; }; + virtual bool isPICDefault() const { return false; } }; class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {