mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 05:43:39 +00:00
add macro for _Exit under WINDOWS
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b36f512879
commit
256c9d76d3
2 changed files with 3 additions and 0 deletions
|
@ -216,6 +216,8 @@ struct nnf::imp {
|
||||||
m_cache_result(cache_res),
|
m_cache_result(cache_res),
|
||||||
m_spos(spos) {
|
m_spos(spos) {
|
||||||
}
|
}
|
||||||
|
//frame():m_curr(*(ast_manager*)(nullptr)) {
|
||||||
|
//}
|
||||||
};
|
};
|
||||||
|
|
||||||
// There are four caches:
|
// There are four caches:
|
||||||
|
|
|
@ -54,6 +54,7 @@ static_assert(sizeof(int64) == 8, "64 bits");
|
||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
#define SSCANF sscanf_s
|
#define SSCANF sscanf_s
|
||||||
#define SPRINTF sprintf_s
|
#define SPRINTF sprintf_s
|
||||||
|
#define _Exit exit
|
||||||
#else
|
#else
|
||||||
#define SSCANF sscanf
|
#define SSCANF sscanf
|
||||||
#define SPRINTF sprintf
|
#define SPRINTF sprintf
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue