aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser.cpp b/Parser.cpp
index 98583f33..13faf583 100644
--- a/Parser.cpp
+++ b/Parser.cpp
@@ -118,6 +118,6 @@ void eth::parseTreeLLL(string const& _s, sp::utree& o_out)
if (!incomment)
s.push_back(i);
}
- qi::phrase_parse(s.cbegin(), s.cend(), element, space, o_out);
+ qi::phrase_parse(s.cbegin(), s.cend(), element, space, qi::skip_flag::dont_postskip, o_out);
}