aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.cpp
diff options
context:
space:
mode:
authorJosh Wolfe <thejoshwolfe@gmail.com>2015-11-30 22:40:52 -0700
committerJosh Wolfe <thejoshwolfe@gmail.com>2015-11-30 22:40:52 -0700
commit18cfcfe44f4b4d624f20508210e2928396e3cf10 (patch)
treea05e4c56d4758f13109ced92e078a3a0f7fd741b /src/analyze.cpp
parent00f4c05784c05552e1e379b98c09161c936cfb31 (diff)
downloadzig-18cfcfe44f4b4d624f20508210e2928396e3cf10.tar.gz
zig-18cfcfe44f4b4d624f20508210e2928396e3cf10.zip
fix ast printer names
Diffstat (limited to 'src/analyze.cpp')
-rw-r--r--src/analyze.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze.cpp b/src/analyze.cpp
index 2d88389dab..248300bbba 100644
--- a/src/analyze.cpp
+++ b/src/analyze.cpp
@@ -363,7 +363,7 @@ static TypeTableEntry * analyze_expression(CodeGen *g, BlockContext *context, Ty
return g->builtin_types.entry_i32;
case NodeTypeStringLiteral:
- zig_panic("TODO");
+ zig_panic("TODO: string literal");
case NodeTypeUnreachable:
return g->builtin_types.entry_unreachable;