video_core/shader/ast: Make ExprPrinter members private

This member already has an accessor, so there's no need for it to be
public.
This commit is contained in:
Lioncash 2019-10-17 20:39:33 -04:00
parent c5c0af5aa7
commit 98d64c9a04

View file

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