mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
Remove extra semicolon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136432 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
00ef6e3a30
commit
00eab6c716
@ -33,7 +33,7 @@ public:
|
|||||||
class NodeSubset {
|
class NodeSubset {
|
||||||
typedef unsigned char BitVector; // Where the limitation N <= 8 comes from.
|
typedef unsigned char BitVector; // Where the limitation N <= 8 comes from.
|
||||||
BitVector Elements;
|
BitVector Elements;
|
||||||
NodeSubset(BitVector e) : Elements(e) {};
|
NodeSubset(BitVector e) : Elements(e) {}
|
||||||
public:
|
public:
|
||||||
/// NodeSubset - Default constructor, creates an empty subset.
|
/// NodeSubset - Default constructor, creates an empty subset.
|
||||||
NodeSubset() : Elements(0) {
|
NodeSubset() : Elements(0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user