diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-03-08 02:49:35 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-03-08 02:49:35 +0000 |
commit | da7914950fe4bab215f40265e3aaba9c489b1938 (patch) | |
tree | 4a13f1bfb49a98fbf4bdf0351752d71cae879c60 | |
parent | 5abbd606200d53f68b57b770ac338c2e9a696abc (diff) |
Remove redundant semicolon
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97930 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Driver/HostInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/HostInfo.cpp b/lib/Driver/HostInfo.cpp index 98b64f1663..d8e086db98 100644 --- a/lib/Driver/HostInfo.cpp +++ b/lib/Driver/HostInfo.cpp @@ -164,7 +164,7 @@ class TCEHostInfo : public HostInfo { public: TCEHostInfo(const Driver &D, const llvm::Triple &Triple); - ~TCEHostInfo() {}; + ~TCEHostInfo() {} virtual bool useDriverDriver() const; |