Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    rb6f2e7ab r88bc876  
    11521152                os << "Sizeof Expression on: ";
    11531153                ++indent;
    1154                 node->type->accept( *this );
     1154                if ( node->type ) node->type->accept( *this );
     1155                else safe_print( node->expr );
    11551156                --indent;
    11561157                postprint( node );
     
    11721173                os << "Alignof Expression on: ";
    11731174                ++indent;
    1174                 node->type->accept( *this );
     1175                if ( node->type ) node->type->accept( *this );
     1176                else safe_print( node->expr );
    11751177                --indent;
    11761178                postprint( node );
Note: See TracChangeset for help on using the changeset viewer.