aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm/Assembly.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-28 22:30:01 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-11 22:15:02 +0800
commit55d2a459a9193024930101c79bbf48af2eb39e2d (patch)
tree94b86da3bd4e556e3601119362a0d31220d3d78a /libevmasm/Assembly.cpp
parentfbe24da159452f8b22206b6e750174ed03b43ade (diff)
downloaddexon-solidity-55d2a459a9193024930101c79bbf48af2eb39e2d.tar.gz
dexon-solidity-55d2a459a9193024930101c79bbf48af2eb39e2d.tar.zst
dexon-solidity-55d2a459a9193024930101c79bbf48af2eb39e2d.zip
Mark functions static in libevmasm
Diffstat (limited to 'libevmasm/Assembly.cpp')
-rw-r--r--libevmasm/Assembly.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libevmasm/Assembly.cpp b/libevmasm/Assembly.cpp
index 8c1f9296..696ab0b3 100644
--- a/libevmasm/Assembly.cpp
+++ b/libevmasm/Assembly.cpp
@@ -210,7 +210,7 @@ ostream& Assembly::streamAsm(ostream& _out, string const& _prefix, StringMap con
return _out;
}
-Json::Value Assembly::createJsonValue(string _name, int _begin, int _end, string _value, string _jumpType) const
+Json::Value Assembly::createJsonValue(string _name, int _begin, int _end, string _value, string _jumpType)
{
Json::Value value;
value["name"] = _name;
@@ -223,7 +223,7 @@ Json::Value Assembly::createJsonValue(string _name, int _begin, int _end, string
return value;
}
-string toStringInHex(u256 _value)
+string Assembly::toStringInHex(u256 _value)
{
std::stringstream hexStr;
hexStr << hex << _value;