3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 09:15:47 +00:00

fixing some compilation warnings

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-24 23:43:58 -07:00
parent b94edf8fe6
commit 2583729085
4 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ Revision History:
#include"str_hashtable.h"
static void tst1() {
map<char *, int, str_hash_proc, str_eq_proc> str2int;
map<char const *, int, str_hash_proc, str_eq_proc> str2int;
str2int.insert("foo", 35);
SASSERT(str2int.contains("foo"));
SASSERT(str2int.find_iterator("foo") != str2int.end());