3
0
Fork 0
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:
Nikolaj Bjorner 2023-09-26 21:15:07 -07:00
parent aaa587398e
commit 6559e5fb32
2 changed files with 26 additions and 0 deletions

View file

@ -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