3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-31 00:13:18 +00:00

Fixed gcc build (c++11 stuff in ezSAT)

This commit is contained in:
Clifford Wolf 2013-06-12 10:18:01 +02:00
parent 4b311b7b99
commit 1bee82ae2d
2 changed files with 5 additions and 2 deletions

View file

@ -44,8 +44,8 @@ public:
OpNot, OpAnd, OpOr, OpXor, OpIFF, OpITE
};
const int TRUE = 1;
const int FALSE = 2;
static const int TRUE;
static const int FALSE;
private:
std::map<std::string, int> literalsCache;