Skip to content

Commit 978311e

Browse files
committed
symboldatabase.cpp: fixed constVariablePointer selfcheck warning
1 parent 1250d70 commit 978311e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/symboldatabase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6518,7 +6518,7 @@ const Scope *Scope::findInNestedListRecursive(const std::string & name) const
65186518
if (it != nestedList.end())
65196519
return *it;
65206520

6521-
for (Scope* scope: nestedList) {
6521+
for (const Scope* scope: nestedList) {
65226522
const Scope *child = scope->findInNestedListRecursive(name);
65236523
if (child)
65246524
return child;

0 commit comments

Comments
 (0)