projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc9a28d
)
remove extraneous comma clang warns about
author
Chris Lattner
<sabre@nondot.org>
Sun, 6 Dec 2009 16:58:41 +0000
(16:58 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/include/llvm/ADT/DenseSet.h
b/include/llvm/ADT/DenseSet.h
index ce7344bc1f99b3eab218817559d9f3300cf8a182..4e64586f9fb7ddb8b0fe2da37b0fdaf02d6b5492 100644
(file)
--- 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; }
};