mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
use signed character type declarations for cross platform compilation. Fixes issue #210
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
87396bd648
commit
4be3926daa
4 changed files with 5 additions and 4 deletions
|
@ -430,6 +430,7 @@ public:
|
|||
typedef svector<int> int_vector;
|
||||
typedef svector<unsigned> unsigned_vector;
|
||||
typedef svector<char> char_vector;
|
||||
typedef svector<signed char> signed_char_vector;
|
||||
typedef svector<double> double_vector;
|
||||
|
||||
template<typename Hash, typename Vec>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue