3
0
Fork 0
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:
Nikolaj Bjorner 2016-06-29 17:02:36 -07:00
parent fd95a9e061
commit e518d4a5fe

View file

@ -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);
}