mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
don't use thread-local storage if running a single thread
This commit is contained in:
parent
3f5cea4a9e
commit
04a2cce830
|
@ -218,7 +218,7 @@ void * memory::allocate(char const* file, int line, char const* obj, size_t s) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined(_WINDOWS) || defined(_USE_THREAD_LOCAL)
|
||||
#if !defined(SINGLE_THREAD) && (defined(_WINDOWS) || defined(_USE_THREAD_LOCAL))
|
||||
// ==================================
|
||||
// ==================================
|
||||
// THREAD LOCAL VERSION
|
||||
|
|
Loading…
Reference in a new issue