Merge branch 'master' into v0.6.0

This commit is contained in:
Thomas Krijnen
2018-12-22 14:06:28 +01:00
3 changed files with 9 additions and 2 deletions
+3 -1
View File
@@ -68,7 +68,9 @@ public:
}
bool operator!=(const type_iterator& other) const {
return entities_by_type_t::const_iterator::operator!=(other);
const entities_by_type_t::const_iterator& self_ = *this;
const entities_by_type_t::const_iterator& other_ = other;
return self_ != other_;
}
};