aboutsummaryrefslogtreecommitdiffstats
path: root/Assembly.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-05-28 00:51:10 +0800
committerGav Wood <i@gavwood.com>2014-05-28 00:51:10 +0800
commit1fdb7a1536209409010c6b6a69aedfce03c8372d (patch)
treee7911c2048e7e8db2479564c3b2f4ae3c96b18d8 /Assembly.h
parent7476c6884ee22194b7d363c5e5401773d04bf47d (diff)
downloaddexon-solidity-1fdb7a1536209409010c6b6a69aedfce03c8372d.tar.gz
dexon-solidity-1fdb7a1536209409010c6b6a69aedfce03c8372d.tar.zst
dexon-solidity-1fdb7a1536209409010c6b6a69aedfce03c8372d.zip
Pinhole optimise working fairly well...
Diffstat (limited to 'Assembly.h')
-rw-r--r--Assembly.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Assembly.h b/Assembly.h
index 2efff943..a3bf998d 100644
--- a/Assembly.h
+++ b/Assembly.h
@@ -62,6 +62,7 @@ typedef std::vector<AssemblyItem> AssemblyItems;
typedef vector_ref<AssemblyItem const> AssemblyItemsConstRef;
std::ostream& operator<<(std::ostream& _out, AssemblyItemsConstRef _i);
+inline std::ostream& operator<<(std::ostream& _out, AssemblyItems const& _i) { return operator<<(_out, AssemblyItemsConstRef(&_i)); }
class Assembly
{