mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
don't use thread-local storage if running a single thread
This commit is contained in:
parent
3f5cea4a9e
commit
04a2cce830
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue