From 17010d445c28d5d67ebb124563f3b9f6991f034f Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Wed, 2 Jul 2014 10:19:04 +0200 Subject: Remove unneeded dependencies. --- Parser.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Parser.cpp') diff --git a/Parser.cpp b/Parser.cpp index 0ae3c6fe..d7658f67 100644 --- a/Parser.cpp +++ b/Parser.cpp @@ -24,7 +24,6 @@ #include #include #include -#include using namespace std; using namespace eth; @@ -73,6 +72,10 @@ void eth::parseTreeLLL(string const& _s, sp::utree& o_out) typedef sp::basic_string symbol_type; typedef string::const_iterator it; + static const u256 ether = u256(1000000000) * 1000000000; + static const u256 finney = u256(1000000000) * 1000000; + static const u256 szabo = u256(1000000000) * 1000; + qi::rule element; qi::rule str = '"' > qi::lexeme[+(~qi::char_(std::string("\"") + '\0'))] > '"'; qi::rule strsh = '\'' > qi::lexeme[+(~qi::char_(std::string(" ;@()[]{}:") + '\0'))]; -- cgit v1.2.3