From: Chris Lattner Date: Sun, 6 Dec 2009 16:58:41 +0000 (+0000) Subject: remove extraneous comma clang warns about X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9000242cca4431a8dd09c83459d56f164294582c;p=oota-llvm.git remove extraneous comma clang warns about git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90707 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/DenseSet.h b/include/llvm/ADT/DenseSet.h index ce7344bc1f9..4e64586f9fb 100644 --- a/include/llvm/ADT/DenseSet.h +++ b/include/llvm/ADT/DenseSet.h @@ -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; } };