aboutsummaryrefslogtreecommitdiffstats
path: root/SolidityInterface.cpp
diff options
context:
space:
mode:
authorCJentzsch <jentzsch.software@gmail.com>2015-02-26 22:42:21 +0800
committerCJentzsch <jentzsch.software@gmail.com>2015-02-26 22:42:21 +0800
commit206d646dbfabd6cb8edea6c68d04d2bc32eb8cf9 (patch)
treee27256e3b1fc13375666e5b34248afa66d771351 /SolidityInterface.cpp
parentc5b2733d1e405487b0b3d419b22a08883ac487dd (diff)
parent60ade5b33f004d64b4f55b5efc2f7083724d9682 (diff)
downloaddexon-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.cpp2
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);
}