diff options
Diffstat (limited to 'src/ast/attrs.hpp')
-rw-r--r-- | src/ast/attrs.hpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/ast/attrs.hpp b/src/ast/attrs.hpp index 7a6ce864..193305b7 100644 --- a/src/ast/attrs.hpp +++ b/src/ast/attrs.hpp @@ -47,12 +47,7 @@ public: return get(name) != 0; } - friend ::std::ostream& operator<<(::std::ostream& os, const AttributeList& x) { - for(const auto& i : x.m_items) { - os << "#[" << i << "]"; - } - return os; - } + friend ::std::ostream& operator<<(::std::ostream& os, const AttributeList& x); }; |