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:
parent
b94edf8fe6
commit
2583729085
4 changed files with 4 additions and 4 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue