aboutsummaryrefslogtreecommitdiffstats
path: root/AssemblyItem.h
diff options
context:
space:
mode:
authordebris <marek.kotewicz@gmail.com>2015-09-08 23:11:02 +0800
committerdebris <marek.kotewicz@gmail.com>2015-09-08 23:11:02 +0800
commit3ca3fb492d2f710f45d690db85089036bfc77b68 (patch)
treea2a8a869585c22dcba9d5707c3d5d4bdfb722a77 /AssemblyItem.h
parentaea7e04bf4fab1c3f1fc9592c03f6b8a34c41be2 (diff)
downloaddexon-solidity-3ca3fb492d2f710f45d690db85089036bfc77b68.tar
dexon-solidity-3ca3fb492d2f710f45d690db85089036bfc77b68.tar.gz
dexon-solidity-3ca3fb492d2f710f45d690db85089036bfc77b68.tar.bz2
dexon-solidity-3ca3fb492d2f710f45d690db85089036bfc77b68.tar.lz
dexon-solidity-3ca3fb492d2f710f45d690db85089036bfc77b68.tar.xz
dexon-solidity-3ca3fb492d2f710f45d690db85089036bfc77b68.tar.zst
dexon-solidity-3ca3fb492d2f710f45d690db85089036bfc77b68.zip
applied changes from https://github.com/ethereum/cpp-ethereum/pull/2953
Diffstat (limited to 'AssemblyItem.h')
-rw-r--r--AssemblyItem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AssemblyItem.h b/AssemblyItem.h
index 3fa9bb20..f677728d 100644
--- a/AssemblyItem.h
+++ b/AssemblyItem.h
@@ -78,7 +78,7 @@ public:
bool match(AssemblyItem const& _i) const { return _i.m_type == UndefinedItem || (m_type == _i.m_type && (m_type != Operation || m_data == _i.m_data)); }
void setLocation(SourceLocation const& _location) { m_location = _location; }
- SourceLocation const& getLocation() const { return m_location; }
+ SourceLocation const& location() const { return m_location; }
void setJumpType(JumpType _jumpType) { m_jumpType = _jumpType; }
JumpType getJumpType() const { return m_jumpType; }