3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-06 03:10:25 +00:00

fix IF_LOGGING macro

This commit is contained in:
Jakob Rath 2023-03-23 14:16:48 +01:00
parent 73b97f3a32
commit 4f7a25eb73

View file

@ -104,7 +104,9 @@ polysat_log(LogLevel msg_level, std::string fn, std::string pretty_fn);
#define IF_LOGGING(x) \
do { \
if (get_log_enabled()) { \
x; \
} \
} while (false)