1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Remove extra semicolon.

llvm-svn: 136432
This commit is contained in:
Jakub Staszak 2011-07-29 00:05:35 +00:00
parent 8e67a44e7c
commit ba1160825b

View File

@ -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) {