Browse Source

video_core/shader/ast: Make ExprPrinter members private

This member already has an accessor, so there's no need for it to be
public.
nce_cpp
Lioncash 6 years ago
parent
commit
98d64c9a04
  1. 3
      src/video_core/shader/ast.cpp

3
src/video_core/shader/ast.cpp

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

Loading…
Cancel
Save