mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 13:06:05 +00:00
disable silly warnings and add needed header for VS
This commit is contained in:
parent
19830bcd33
commit
f45ad4bdc0
17 changed files with 103 additions and 4 deletions
|
@ -21,13 +21,21 @@ Revision History:
|
|||
|
||||
|
||||
|
||||
#include "duality.h"
|
||||
#include "duality_profiling.h"
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4996)
|
||||
#pragma warning(disable:4800)
|
||||
#pragma warning(disable:4267)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include <fstream>
|
||||
#include <set>
|
||||
#include <iterator>
|
||||
|
||||
|
||||
#include "duality.h"
|
||||
#include "duality_profiling.h"
|
||||
|
||||
#ifndef WIN32
|
||||
// #define Z3OPS
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue