summaryrefslogtreecommitdiff
path: root/src/ast/item.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/item.hpp')
-rw-r--r--src/ast/item.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/item.hpp b/src/ast/item.hpp
index 2d3d1a1b..cc88f3e2 100644
--- a/src/ast/item.hpp
+++ b/src/ast/item.hpp
@@ -12,7 +12,7 @@ struct NamedNS
::std::string name;
T data;
bool is_pub;
-
+
NamedNS():
is_pub(false)
{}
@@ -25,7 +25,7 @@ struct NamedNS
is_pub( is_pub )
{
}
-
+
//friend ::std::ostream& operator<<(::std::ostream& os, const Named& i) {
// return os << (i.is_pub ? "pub " : " ") << i.name << ": " << i.data;
//}