diff options
author | Lioncash <mathew1800@gmail.com> | 2019-10-18 02:39:33 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-10-18 02:39:36 +0200 |
commit | 7831e86c34e45cdb8608ec47823b64ff88d09ac0 (patch) | |
tree | d133af144ea36b00999eb100855e08be1252a9c3 /src | |
parent | video_core/shader/ast: Make Indent() return a string_view (diff) | |
download | yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar.gz yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar.bz2 yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar.lz yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar.xz yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.tar.zst yuzu-7831e86c34e45cdb8608ec47823b64ff88d09ac0.zip |
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: return inner; } - std::string inner{}; +private: + std::string inner; }; class ASTPrinter { |