mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 09:20:22 +00:00
port over std_vector and std-allocator functionality from monomial propagation branch
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
aaa587398e
commit
6559e5fb32
2 changed files with 26 additions and 0 deletions
|
@ -33,6 +33,7 @@ Revision History:
|
|||
#include "util/memory_manager.h"
|
||||
#include "util/hash.h"
|
||||
#include "util/z3_exception.h"
|
||||
#include <vector>
|
||||
|
||||
// disable warning for constant 'if' expressions.
|
||||
// these are used heavily in templates.
|
||||
|
@ -40,6 +41,8 @@ Revision History:
|
|||
#pragma warning(disable:4127)
|
||||
#endif
|
||||
|
||||
template <typename T>
|
||||
using std_vector = std::vector<T, std_allocator<T>>;
|
||||
|
||||
#if 0
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue