Fixed gcc build (c++11 stuff in ezSAT)
This commit is contained in:
@@ -24,6 +24,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
|
||||
const int ezSAT::TRUE = 1;
|
||||
const int ezSAT::FALSE = 2;
|
||||
|
||||
ezSAT::ezSAT()
|
||||
{
|
||||
literal("TRUE");
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user