Removed const, Windows build is now working

This commit is contained in:
Tomer Lev 2022-11-10 19:04:37 +02:00
parent e2be5ddc0c
commit d7474e2aa2

View file

@ -85,7 +85,7 @@ private:
bool NextStmtIsValid() { return stmt_depths[STMT_FOR] > 0 || stmt_depths[STMT_WHILE] > 0; } bool NextStmtIsValid() { return stmt_depths[STMT_FOR] > 0 || stmt_depths[STMT_WHILE] > 0; }
std::unordered_map<const StmtTag, int> stmt_depths; std::unordered_map<StmtTag, int> stmt_depths;
int hook_depth = 0; int hook_depth = 0;
}; };