Merge pull request #2447 from WalterCouto/test2

Change bitset upperbound to another higher arbitrary value to allow f…
This commit is contained in:
Terence Parr 2018-12-26 09:26:13 -07:00 committed by GitHub
commit 6808f9c4b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
namespace antlrcpp {
class ANTLR4CPP_PUBLIC BitSet : public std::bitset<1024> {
class ANTLR4CPP_PUBLIC BitSet : public std::bitset<2048> {
public:
size_t nextSetBit(size_t pos) const {
for (size_t i = pos; i < size(); i++){