summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorJakub Staszak <jstaszak@apple.com>2011-07-29 00:05:35 +0000
committerJakub Staszak <jstaszak@apple.com>2011-07-29 00:05:35 +0000
commit00eab6c716e206491de195ae4dd85ea493c98582 (patch)
tree73bddb3760e19e1ec3f17d5cdbf5fdcaabd74534 /unittests
parent00ef6e3a30a6b80ff995d3ee718db6349f93d732 (diff)
downloadllvm-00eab6c716e206491de195ae4dd85ea493c98582.tar.gz
llvm-00eab6c716e206491de195ae4dd85ea493c98582.tar.bz2
llvm-00eab6c716e206491de195ae4dd85ea493c98582.tar.xz
Remove extra semicolon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ADT/SCCIteratorTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ADT/SCCIteratorTest.cpp b/unittests/ADT/SCCIteratorTest.cpp
index 1151da0837..c3ffce59ab 100644
--- a/unittests/ADT/SCCIteratorTest.cpp
+++ b/unittests/ADT/SCCIteratorTest.cpp
@@ -33,7 +33,7 @@ public:
class NodeSubset {
typedef unsigned char BitVector; // Where the limitation N <= 8 comes from.
BitVector Elements;
- NodeSubset(BitVector e) : Elements(e) {};
+ NodeSubset(BitVector e) : Elements(e) {}
public:
/// NodeSubset - Default constructor, creates an empty subset.
NodeSubset() : Elements(0) {