diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-02-26 20:45:11 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-02-26 20:45:11 +0800 |
commit | f17f01a30e66bf0091393e8a5095f39eef0c3bb9 (patch) | |
tree | 80c90569a9f3f7518099a187b0ec9467ce256f87 /SolidityInterface.cpp | |
parent | 61d07d132826db9b49f67f14cdba5a1326f85803 (diff) | |
parent | 60ade5b33f004d64b4f55b5efc2f7083724d9682 (diff) | |
download | dexon-solidity-f17f01a30e66bf0091393e8a5095f39eef0c3bb9.tar dexon-solidity-f17f01a30e66bf0091393e8a5095f39eef0c3bb9.tar.gz dexon-solidity-f17f01a30e66bf0091393e8a5095f39eef0c3bb9.tar.bz2 dexon-solidity-f17f01a30e66bf0091393e8a5095f39eef0c3bb9.tar.lz dexon-solidity-f17f01a30e66bf0091393e8a5095f39eef0c3bb9.tar.xz dexon-solidity-f17f01a30e66bf0091393e8a5095f39eef0c3bb9.tar.zst dexon-solidity-f17f01a30e66bf0091393e8a5095f39eef0c3bb9.zip |
Merge remote-tracking branch 'upstream/develop' into addTests
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); } |