diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-02-26 22:42:21 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-02-26 22:42:21 +0800 |
commit | 206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9 (patch) | |
tree | e27256e3b1fc13375666e5b34248afa66d771351 /SolidityInterface.cpp | |
parent | c5b2733d1e405487b0b3d419b22a08883ac487dd (diff) | |
parent | 60ade5b33f004d64b4f55b5efc2f7083724d9682 (diff) | |
download | dexon-solidity-206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9.tar dexon-solidity-206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9.tar.gz dexon-solidity-206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9.tar.bz2 dexon-solidity-206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9.tar.lz dexon-solidity-206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9.tar.xz dexon-solidity-206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9.tar.zst dexon-solidity-206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9.zip |
Merge remote-tracking branch 'upstream/develop' into memTests
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); } |