فهرست منبع

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 6 سال پیش
والد
کامیت
7831e86c34
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  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 {