diff options
author | Lioncash <mathew1800@gmail.com> | 2019-10-17 20:39:33 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-10-17 20:39:36 -0400 |
commit | 7831e86c34e45cdb8608ec47823b64ff88d09ac0 (patch) | |
tree | d133af144ea36b00999eb100855e08be1252a9c3 /src/video_core/shader/ast.cpp | |
parent | a2eccbf075ea686cb54d7ebce719cf9ad6cf551b (diff) |
video_core/shader/ast: Make ExprPrinter members private
This member already has an accessor, so there's no need for it to be
public.
Diffstat (limited to 'src/video_core/shader/ast.cpp')
-rw-r--r-- | src/video_core/shader/ast.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/ast.cpp b/src/video_core/shader/ast.cpp index 9ef1d0a780..c7d471d507 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 { |