mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
g++ pedantry
This commit is contained in:
parent
588aeff5c3
commit
43644fc2cb
|
@ -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…
Reference in a new issue