Parcourir la source

video_core/shader/ast: Make ExprPrinter members private

This member already has an accessor, so there's no need for it to be
public.
Lioncash il y a 6 ans
Parent
commit
7831e86c34
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      src/video_core/shader/ast.cpp

+ 2 - 1
src/video_core/shader/ast.cpp

@@ -232,7 +232,8 @@ public:
         return inner;
     }
 
-    std::string inner{};
+private:
+    std::string inner;
 };
 
 class ASTPrinter {