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

try string in pragma

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-05-01 08:54:05 -07:00
parent 42c9394c6d
commit 5ba814b14f

View file

@ -194,7 +194,7 @@ bool is_threaded();
#ifdef _MSC_VER
#define DO_PRAGMA(x) __pragma(x)
#else
#define DO_PRAGMA(x) _Pragma((x))
#define DO_PRAGMA(x) _Pragma(#x)
#endif
#ifdef _NO_OMP_