From eb222dc784fa6db4edb468b00d4feb053ed2ce1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 17 Oct 2020 23:16:19 +0200 Subject: [PATCH] ksys/util: Add missing const qualifier to one ByamlIter member function --- src/KingSystem/Utils/Byaml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KingSystem/Utils/Byaml.h b/src/KingSystem/Utils/Byaml.h index 56dddd61..5c600627 100644 --- a/src/KingSystem/Utils/Byaml.h +++ b/src/KingSystem/Utils/Byaml.h @@ -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;