duytai/sFuzz

expected unqualified-id before numeric constant

Opened this issue · 3 comments

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;

same issue, do you have any solutions?

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.

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.

thanks, i will try it