From 67590eddc7f276b8609ae46a39ae8300d396228b Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 3 Jul 2014 08:15:36 -0700 Subject: [PATCH] Fix stream operator for new parse action types --- src/compiler/parse_table.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/compiler/parse_table.cc b/src/compiler/parse_table.cc index 168209cd..66d5f2ca 100644 --- a/src/compiler/parse_table.cc +++ b/src/compiler/parse_table.cc @@ -68,8 +68,10 @@ namespace tree_sitter { return stream << (string("#"); case ParseActionTypeShiftExtra: return stream << string("#"); case ParseActionTypeReduce: - return stream << (string("#"); + return stream << ("#"); default: return stream; }