diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-19 17:50:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-19 17:50:07 +0000 |
commit | e017ecc9e2fd8df2aeecfc8f899c70170411c433 (patch) | |
tree | 6093d5abfbee4102c702f6c3cb0cc36f9c917a47 /clang/lib/Driver | |
parent | 4750efc28a581c38f74793f8c096c45b99ed0c83 (diff) | |
download | bcm5719-llvm-e017ecc9e2fd8df2aeecfc8f899c70170411c433.tar.gz bcm5719-llvm-e017ecc9e2fd8df2aeecfc8f899c70170411c433.zip |
Remove ';' after method definition. Noticed by clang++, which one would think
would have a higher respect for its own code. This is getting old, is this
warning really adding value?
llvm-svn: 91779
Diffstat (limited to 'clang/lib/Driver')
-rw-r--r-- | clang/lib/Driver/Tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Tools.h b/clang/lib/Driver/Tools.h index 6729da8370a..8f7da52c311 100644 --- a/clang/lib/Driver/Tools.h +++ b/clang/lib/Driver/Tools.h @@ -137,7 +137,7 @@ namespace darwin { } public: - DarwinTool(const char *Name, const ToolChain &TC) : Tool(Name, TC) {}; + DarwinTool(const char *Name, const ToolChain &TC) : Tool(Name, TC) {} }; class VISIBILITY_HIDDEN CC1 : public DarwinTool { |