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