expected unqualified-id before numeric constant
Opened this issue · 3 comments
tjuwhy commented
when make
/data/sFuzz/liboracle/Common.h:17:15: error: expected unqualified-id before numeric constant
const uint8_t OVERFLOW = 7;
^
/data/sFuzz/liboracle/Common.h:18:15: error: expected unqualified-id before numeric constant
const uint8_t UNDERFLOW = 8;
cl0udee commented
same issue, do you have any solutions?
tjuwhy commented
It seems to be a conflict with other constants. So I refactor these two variables to ORACLE_OVERFLOW
and ORACLE_UNDERFLOW
, then the compilation passed.
cl0udee commented
It seems to be a conflict with other constants. So I refactor these two variables to
ORACLE_OVERFLOW
andORACLE_UNDERFLOW
, then the compilation passed.
thanks, i will try it