mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 04:28:17 +00:00
typename conventions, issue #664
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fd95a9e061
commit
e518d4a5fe
|
@ -581,7 +581,7 @@ public:
|
|||
core_hashtable& operator=(core_hashtable const& other) {
|
||||
if (this == &other) return *this;
|
||||
reset();
|
||||
core_hashtable::iterator i = other.begin(), e = other.end();
|
||||
iterator i = other.begin(), e = other.end();
|
||||
for (; i != e; ++i) {
|
||||
insert(*i);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue