summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wasm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h
index d0b154cd1..04b524260 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -448,7 +448,7 @@ public:
o << ") (case " << default_ << ")\n";
for (auto& c : cases) {
doIndent(o, indent);
- printMinorOpening(o, "case ") << c.name.str;
+ printMinorOpening(o, "case ") << c.name;
incIndent(o, indent);
printFullLine(o, indent, c.body);
decIndent(o, indent) << '\n';