Remove unneeded dependencies.

This commit is contained in:
Gav Wood 2014-07-02 10:19:04 +02:00
parent 3174a5e0c6
commit 17010d445c
3 changed files with 4 additions and 3 deletions

View File

@ -22,7 +22,6 @@
#include "Assembly.h"
#include <libethential/Log.h>
#include <libethcore/CommonEth.h>
using namespace std;
using namespace eth;

View File

@ -25,7 +25,6 @@
#include <sstream>
#include <libethential/Common.h>
#include <libevmface/Instruction.h>
#include <libethcore/SHA3.h>
#include "Exceptions.h"
namespace eth

View File

@ -24,7 +24,6 @@
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
#include <boost/spirit/include/support_utree.hpp>
#include <libethcore/CommonEth.h>
using namespace std;
using namespace eth;
@ -73,6 +72,10 @@ void eth::parseTreeLLL(string const& _s, sp::utree& o_out)
typedef sp::basic_string<std::string, sp::utree_type::symbol_type> 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<it, qi::ascii::space_type, sp::utree()> element;
qi::rule<it, string()> str = '"' > qi::lexeme[+(~qi::char_(std::string("\"") + '\0'))] > '"';
qi::rule<it, string()> strsh = '\'' > qi::lexeme[+(~qi::char_(std::string(" ;@()[]{}:") + '\0'))];