aboutsummaryrefslogtreecommitdiffstats
path: root/SolidityInterface.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-24 00:14:59 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-25 00:16:22 +0800
commita269adb549994e1c411eec023862a817e00cdb44 (patch)
treed92f0f10ed5d042b9f57326323c011d4a70a55e4 /SolidityInterface.cpp
parenta24e0b5b150b56256f8795842b8ab04c9b96174e (diff)
downloaddexon-solidity-a269adb549994e1c411eec023862a817e00cdb44.tar.gz
dexon-solidity-a269adb549994e1c411eec023862a817e00cdb44.tar.zst
dexon-solidity-a269adb549994e1c411eec023862a817e00cdb44.zip
Moving Source Location libdevcore
- Big plus is we now remove the useless header libsolibity/BaseTypes.h
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);
}