mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +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) {
|
core_hashtable& operator=(core_hashtable const& other) {
|
||||||
if (this == &other) return *this;
|
if (this == &other) return *this;
|
||||||
reset();
|
reset();
|
||||||
core_hashtable::iterator i = other.begin(), e = other.end();
|
iterator i = other.begin(), e = other.end();
|
||||||
for (; i != e; ++i) {
|
for (; i != e; ++i) {
|
||||||
insert(*i);
|
insert(*i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue