diff options
author | Alex Dupre <ale@FreeBSD.org> | 2019-01-18 15:53:16 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2019-01-18 15:53:16 +0000 |
commit | e20178f31024b4071b03de0964e9df54d075af5d (patch) | |
tree | 6c6d901a31a293ce3c30b1e078d373203d0baf93 /lang/solidity/files | |
parent | multimedia/openh264: drop USES=compiler after r473444 (diff) |
Update to 0.5.2 release.
Diffstat (limited to 'lang/solidity/files')
-rw-r--r-- | lang/solidity/files/patch-libevmasm_Assembly.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/solidity/files/patch-libevmasm_Assembly.cpp b/lang/solidity/files/patch-libevmasm_Assembly.cpp deleted file mode 100644 index 74b1e40133a1..000000000000 --- a/lang/solidity/files/patch-libevmasm_Assembly.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- libevmasm/Assembly.cpp.orig 2018-05-16 14:30:44 UTC -+++ libevmasm/Assembly.cpp -@@ -264,7 +264,7 @@ Json::Value Assembly::assemblyJSON(Strin - createJsonValue("PUSH [ErrorTag]", i.location().start, i.location().end, "")); - else - collection.append( -- createJsonValue("PUSH [tag]", i.location().start, i.location().end, string(i.data()))); -+ createJsonValue("PUSH [tag]", i.location().start, i.location().end, dev::toString(i.data()))); - break; - case PushSub: - collection.append( -@@ -290,7 +290,7 @@ Json::Value Assembly::assemblyJSON(Strin - break; - case Tag: - collection.append( -- createJsonValue("tag", i.location().start, i.location().end, string(i.data()))); -+ createJsonValue("tag", i.location().start, i.location().end, dev::toString(i.data()))); - collection.append( - createJsonValue("JUMPDEST", i.location().start, i.location().end)); - break; |