summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-10-17 23:16:19 +0200
committerLéo Lam <leo@leolam.fr>2020-10-17 23:17:09 +0200
commiteb222dc784fa6db4edb468b00d4feb053ed2ce1f (patch)
tree1dd72d03bb7ecc626eac9296934e37cf423201c0 /src
parente3fd543178dca9da32cc892e72cecacaf6ab406b (diff)
ksys/util: Add missing const qualifier to one ByamlIter member function
Diffstat (limited to 'src')
-rw-r--r--src/KingSystem/Utils/Byaml.h2
1 files changed, 1 insertions, 1 deletions
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;