summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/ast.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-10-18 02:39:33 +0200
committerLioncash <mathew1800@gmail.com>2019-10-18 02:39:36 +0200
commit7831e86c34e45cdb8608ec47823b64ff88d09ac0 (patch)
treed133af144ea36b00999eb100855e08be1252a9c3 /src/video_core/shader/ast.cpp
parentvideo_core/shader/ast: Make Indent() return a string_view (diff)
downloadyuzu-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/video_core/shader/ast.cpp')
-rw-r--r--src/video_core/shader/ast.cpp3
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 {