diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-06 16:58:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-06 16:58:41 +0000 |
commit | 9000242cca4431a8dd09c83459d56f164294582c (patch) | |
tree | 648c7b5183e1cddc3e5f6928f4543bd798003a0b /include/llvm/ADT | |
parent | bc9a28dd544e37074693333ea96c508a3d3bc3b4 (diff) | |
download | external_llvm-9000242cca4431a8dd09c83459d56f164294582c.zip external_llvm-9000242cca4431a8dd09c83459d56f164294582c.tar.gz external_llvm-9000242cca4431a8dd09c83459d56f164294582c.tar.bz2 |
remove extraneous comma clang warns about
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90707 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r-- | include/llvm/ADT/DenseSet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/DenseSet.h b/include/llvm/ADT/DenseSet.h index ce7344b..4e64586 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; } }; |