Changes in src/AST/Print.cpp [525f7ad:822332e]
- File:
-
- 1 edited
-
src/AST/Print.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.cpp
r525f7ad r822332e 1143 1143 } 1144 1144 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 1154 1145 virtual const ast::Expr * visit( const ast::AlignofExpr * node ) override final { 1155 1146 os << "Alignof Expression on: ";
Note:
See TracChangeset
for help on using the changeset viewer.