From 9000242cca4431a8dd09c83459d56f164294582c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 6 Dec 2009 16:58:41 +0000 Subject: [PATCH] remove extraneous comma clang warns about git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90707 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/DenseSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } };