diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-11-27 17:31:26 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-11-27 17:31:26 +0000 |
commit | f8fc6273ed33386f5081f5cd5d30abd339eec030 (patch) | |
tree | b36bda63af41e526a00dd361ade13c87088d3a9b | |
parent | 9d8b5fc45e48bb913dcb7f253f005418ba979534 (diff) |
Remove an extra semicolon.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168707 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Driver/ToolChains.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |