3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

fix compiler warnings reported by Robert White

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-04-02 15:54:28 +02:00
parent 7fd6549a40
commit 1db7e0a149
7 changed files with 25 additions and 24 deletions

View file

@ -464,7 +464,7 @@ namespace hash_space {
Value &operator[](const Key& key) {
std::pair<Key,Value> kvp(key,Value());
return lookup(kvp,true)->val.second;
return this->lookup(kvp,true)->val.second;
}
};