ksys/util: Add missing const qualifier to one ByamlIter member function

This commit is contained in:
Léo Lam 2020-10-17 23:16:19 +02:00
parent e3fd543178
commit eb222dc784
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public:
bool getByamlDataByKeyIndex(ByamlData* data, s32 index) const;
ByamlIter getIterByIndex(s32 index) const;
ByamlIter getIterByKey(const char* key) const;
bool getKeyName(const char** key, s32 index);
bool getKeyName(const char** key, s32 index) const;
bool tryGetIterByIndex(ByamlIter* iter, s32 index) const;
bool tryGetIterByKey(ByamlIter* iter, const char* key) const;