diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-02-27 15:59:49 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-02-27 15:59:49 +0800 |
commit | 0e8dbe5318aab58372dbdef5e38d7c90e3b453e3 (patch) | |
tree | 75cde752b2349b4e7646671099771850b06e4795 /SolidityInterface.cpp | |
parent | 37c5f585aaddf933cb5d6de509af63e54a6fbfc0 (diff) | |
parent | 157f93898ae57cff875beb6549314bcb4ac66cdf (diff) | |
download | dexon-solidity-0e8dbe5318aab58372dbdef5e38d7c90e3b453e3.tar dexon-solidity-0e8dbe5318aab58372dbdef5e38d7c90e3b453e3.tar.gz dexon-solidity-0e8dbe5318aab58372dbdef5e38d7c90e3b453e3.tar.bz2 dexon-solidity-0e8dbe5318aab58372dbdef5e38d7c90e3b453e3.tar.lz dexon-solidity-0e8dbe5318aab58372dbdef5e38d7c90e3b453e3.tar.xz dexon-solidity-0e8dbe5318aab58372dbdef5e38d7c90e3b453e3.tar.zst dexon-solidity-0e8dbe5318aab58372dbdef5e38d7c90e3b453e3.zip |
Merge remote-tracking branch 'upstream/develop' into evmjit
Diffstat (limited to 'SolidityInterface.cpp')
-rw-r--r-- | SolidityInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityInterface.cpp b/SolidityInterface.cpp index a73c118b..35471518 100644 --- a/SolidityInterface.cpp +++ b/SolidityInterface.cpp @@ -50,7 +50,7 @@ public: string getSourcePart(ASTNode const& _node) const { - Location location = _node.getLocation(); + SourceLocation location = _node.getLocation(); BOOST_REQUIRE(!location.isEmpty()); return m_interface.substr(location.start, location.end - location.start); } |