1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-26 14:06:31 -05:00

node_states: Mark relevant member functions as const

This commit is contained in:
Lioncash
2022-09-16 09:59:56 -04:00
parent e4bc7b8611
commit 6b1cb73350

View File

@@ -56,7 +56,7 @@ class NodeStates {
* *
* @return The current stack position. * @return The current stack position.
*/ */
u32 Count() { u32 Count() const {
return pos; return pos;
} }
@@ -83,7 +83,7 @@ class NodeStates {
* *
* @return The node on the top of the stack. * @return The node on the top of the stack.
*/ */
u32 top() { u32 top() const {
return stack[pos - 1]; return stack[pos - 1];
} }