Skip to content

Commit 0c35c50

Browse files
committed
Add const to operator
1 parent 9f2c629 commit 0c35c50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/credentials/GroupDataProvider.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class GroupDataProvider
7272
Platform::CopyString(name, groupName);
7373
}
7474
}
75-
bool operator==(const GroupInfo & other)
75+
bool operator==(const GroupInfo & other) const
7676
{
7777
return (this->group_id == other.group_id) && !strncmp(this->name, other.name, kGroupNameMax);
7878
}

0 commit comments

Comments
 (0)