remove extraneous comma clang warns about
authorChris Lattner <sabre@nondot.org>
Sun, 6 Dec 2009 16:58:41 +0000 (16:58 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 6 Dec 2009 16:58:41 +0000 (16:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90707 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/DenseSet.h

index ce7344bc1f99b3eab218817559d9f3300cf8a182..4e64586f9fb7ddb8b0fe2da37b0fdaf02d6b5492 100644 (file)
@@ -60,7 +60,7 @@ public:
     ValueT& operator*() { return I->first; }
     ValueT* operator->() { return &I->first; }
 
-    Iterator& operator++() { ++I; return *this; };
+    Iterator& operator++() { ++I; return *this; }
     bool operator==(const Iterator& X) const { return I == X.I; }
     bool operator!=(const Iterator& X) const { return I != X.I; }
   };