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:
parent
cd4b53500c
commit
9736c46375
2 changed files with 6 additions and 0 deletions
|
@ -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) { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue