Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r822332e r525f7ad  
    11431143        }
    11441144
     1145        virtual const ast::Expr * visit( const ast::CountExpr * node ) override final {
     1146                os << "Count Expression on: ";
     1147                ++indent;
     1148                node->type->accept( *this );
     1149                --indent;
     1150                postprint( node );
     1151                return node;
     1152        }
     1153
    11451154        virtual const ast::Expr * visit( const ast::AlignofExpr * node ) override final {
    11461155                os << "Alignof Expression on: ";
Note: See TracChangeset for help on using the changeset viewer.