- Timestamp:
- Jul 20, 2020, 1:06:48 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 923d25a
- Parents:
- aebf5b0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/AST/Print.cpp ¶
raebf5b0 ra8ed717 29 29 30 30 template <typename C, typename... T> 31 constexpr auto make_array(T&&... values) -> 32 array<C,sizeof...(T)> 31 constexpr array<C,sizeof...(T)> make_array(T&&... values) 33 32 { 34 33 return array<C,sizeof...(T)>{ … … 842 841 virtual const ast::Expr * visit( const ast::CastExpr * node ) override final { 843 842 ++indent; 844 os << (node->isGenerated ? "Generated" : "Explicit") << " cast of:" << endl << indent;843 os << (node->isGenerated ? "Generated" : "Explicit") << " Cast of:" << endl << indent; 845 844 safe_print( node->arg ); 846 845 os << endl << indent-1 << "... to:";
Note: See TracChangeset
for help on using the changeset viewer.