Преглед изворни кода

node_states: Mark relevant member functions as const

Lioncash пре 3 година
родитељ
комит
6b1cb73350
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      src/audio_core/renderer/nodes/node_states.h

+ 2 - 2
src/audio_core/renderer/nodes/node_states.h

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