diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/unittests/ADT/SCCIteratorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/SCCIteratorTest.cpp b/llvm/unittests/ADT/SCCIteratorTest.cpp index 1151da08373..c3ffce59abd 100644 --- a/llvm/unittests/ADT/SCCIteratorTest.cpp +++ b/llvm/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) { |