aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-06 16:58:41 +0000
committerChris Lattner <sabre@nondot.org>2009-12-06 16:58:41 +0000
commit9000242cca4431a8dd09c83459d56f164294582c (patch)
tree648c7b5183e1cddc3e5f6928f4543bd798003a0b
parentbc9a28dd544e37074693333ea96c508a3d3bc3b4 (diff)
downloadexternal_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
-rw-r--r--include/llvm/ADT/DenseSet.h2
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; }
};