diff options
| author | 2019-10-17 20:39:33 -0400 | |
|---|---|---|
| committer | 2019-10-17 20:39:36 -0400 | |
| commit | 7831e86c34e45cdb8608ec47823b64ff88d09ac0 (patch) | |
| tree | d133af144ea36b00999eb100855e08be1252a9c3 /src | |
| parent | video_core/shader/ast: Make Indent() return a string_view (diff) | |
| download | yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar.gz yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar.xz yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.zip | |
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')
| -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 9ef1d0a78..c7d471d50 100644 --- a/src/video_core/shader/ast.cpp +++ b/src/video_core/shader/ast.cpp | |||
| @@ -232,7 +232,8 @@ public: | |||
| 232 | return inner; | 232 | return inner; |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | std::string inner{}; | 235 | private: |
| 236 | std::string inner; | ||
| 236 | }; | 237 | }; |
| 237 | 238 | ||
| 238 | class ASTPrinter { | 239 | class ASTPrinter { |