aboutsummaryrefslogtreecommitdiffstats
path: root/Assembly.h
diff options
context:
space:
mode:
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
{