diff options
Diffstat (limited to 'src/ident.cpp')
-rw-r--r-- | src/ident.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ident.cpp b/src/ident.cpp index a5a6bdbb..8543d6fa 100644 --- a/src/ident.cpp +++ b/src/ident.cpp @@ -16,11 +16,11 @@ bool Ident::Hygiene::is_visible(const Hygiene& src) const { // HACK: Disable hygiene for now return true; - //return x.scope_index == src.scope_index; + //return this->scope_index == src.scope_index; } ::std::ostream& operator<<(::std::ostream& os, const Ident& x) { - os << x.name; + os << x.name << x.hygiene; return os; } |