Changeset 8bf784a for src/SynTree/Declaration.cc
- Timestamp:
- Dec 21, 2016, 2:54:31 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- e33f321
- Parents:
- 6d4d1a6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.cc
r6d4d1a6 r8bf784a 57 57 58 58 std::ostream & operator<<( std::ostream & out, const Declaration * decl ) { 59 decl->print( out ); 59 if ( decl ){ 60 decl->print( out ); 61 } else { 62 out << "nullptr"; 63 } 60 64 return out; 61 65 }
Note: See TracChangeset
for help on using the changeset viewer.