From 7831e86c34e45cdb8608ec47823b64ff88d09ac0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 17 Oct 2019 20:39:33 -0400 Subject: video_core/shader/ast: Make ExprPrinter members private This member already has an accessor, so there's no need for it to be public. --- src/video_core/shader/ast.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/video_core/shader/ast.cpp') diff --git a/src/video_core/shader/ast.cpp b/src/video_core/shader/ast.cpp index 9ef1d0a78..c7d471d50 100644 --- a/src/video_core/shader/ast.cpp +++ b/src/video_core/shader/ast.cpp @@ -232,7 +232,8 @@ public: return inner; } - std::string inner{}; +private: + std::string inner; }; class ASTPrinter { -- cgit v1.2.3