mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
g++ pedantry
This commit is contained in:
parent
588aeff5c3
commit
43644fc2cb
1 changed files with 3 additions and 1 deletions
|
@ -464,7 +464,9 @@ namespace hash_space {
|
|||
|
||||
Value &operator[](const Key& key) {
|
||||
std::pair<Key,Value> kvp(key,Value());
|
||||
return lookup(kvp,true)->val.second;
|
||||
return
|
||||
hashtable<std::pair<Key,Value>,Key,HashFun,proj1<Key,Value>,EqFun>::
|
||||
lookup(kvp,true)->val.second;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue