0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

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 a2eccbf075
commit 7831e86c34

View File

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