3
0
Fork 0
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:
Nikolaj Bjorner 2015-09-05 16:30:58 -07:00
parent 87396bd648
commit 4be3926daa
4 changed files with 5 additions and 4 deletions

View file

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