Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r525f7ad r822332e  
    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 
    11541145        virtual const ast::Expr * visit( const ast::AlignofExpr * node ) override final {
    11551146                os << "Alignof Expression on: ";
Note: See TracChangeset for help on using the changeset viewer.