Merge pull request #2447 from WalterCouto/test2
Change bitset upperbound to another higher arbitrary value to allow f…
This commit is contained in:
commit
6808f9c4b4
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
namespace antlrcpp {
|
namespace antlrcpp {
|
||||||
|
|
||||||
class ANTLR4CPP_PUBLIC BitSet : public std::bitset<1024> {
|
class ANTLR4CPP_PUBLIC BitSet : public std::bitset<2048> {
|
||||||
public:
|
public:
|
||||||
size_t nextSetBit(size_t pos) const {
|
size_t nextSetBit(size_t pos) const {
|
||||||
for (size_t i = pos; i < size(); i++){
|
for (size_t i = pos; i < size(); i++){
|
||||||
|
|
Loading…
Reference in New Issue