3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00

constify is_threaded if MT is disabled

This commit is contained in:
Nuno Lopes 2019-03-08 11:16:10 +00:00
parent cd4b53500c
commit 9736c46375
2 changed files with 6 additions and 0 deletions

View file

@ -174,7 +174,11 @@ void set_verbosity_level(unsigned lvl);
unsigned get_verbosity_level();
std::ostream& verbose_stream();
void set_verbose_stream(std::ostream& str);
#ifdef _NO_OMP_
# define is_threaded() false
#else
bool is_threaded();
#endif
#define IF_VERBOSE(LVL, CODE) { \