forked from qt-creator/qt-creator
C++: Better names for Scope's iterators
Scope::lastMember() was misleading. Change-Id: I953d489b8a2a9b86321f73cad3b7b371c4acf91f Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Przemyslaw Gorszkowski <pgorszkowski@gmail.com>
This commit is contained in:
@@ -141,8 +141,8 @@ static QByteArray idForSymbol(Symbol *symbol)
|
||||
// add the index of this symbol within its enclosing scope
|
||||
// (counting symbols without identifier of the same type)
|
||||
int count = 0;
|
||||
Scope::iterator it = scope->firstMember();
|
||||
while (it != scope->lastMember() && *it != symbol) {
|
||||
Scope::iterator it = scope->memberBegin();
|
||||
while (it != scope->memberEnd() && *it != symbol) {
|
||||
Symbol *val = *it;
|
||||
++it;
|
||||
if (val->identifier() || typeId(val) != uid)
|
||||
|
||||
Reference in New Issue
Block a user