You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Applications using Minisat will not compile in strict mode with latest compilers (reported with workaround for example in the README of the Open-Source synthesis tool YOSYS, https://github.com/cliffordwolf/yosys/blob/master/README#L283). This is fixed by adding a whitespace between the format string and the PRIi64 token: "%4" PRIi64.
Sincerely,
H.
/include/minisat/utils/Options.h:285:33: error: invalid suffix on literal; C++11
requires a space between literal and identifier [-Wreserved-user-defined-literal]
fprintf(stderr, "%4"PRIi64, range.begin);
^
The text was updated successfully, but these errors were encountered:
Hi,
Applications using Minisat will not compile in strict mode with latest compilers (reported with workaround for example in the README of the Open-Source synthesis tool YOSYS, https://github.com/cliffordwolf/yosys/blob/master/README#L283). This is fixed by adding a whitespace between the format string and the PRIi64 token: "%4" PRIi64.
Sincerely,
H.
The text was updated successfully, but these errors were encountered: