Changeset 9d23c2d for src/AST/Node.cpp
- Timestamp:
- May 22, 2019, 1:03:56 PM (4 years ago)
- Branches:
- arm-eh, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 15934a6
- Parents:
- 20de6fb (diff), 3f840e3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Node.cpp
r20de6fb r9d23c2d 26 26 #include "Type.hpp" 27 27 #include "TypeSubstitution.hpp" 28 29 #include "Print.hpp" 28 30 29 31 template< typename node_t, enum ast::Node::ref_type ref_t > … … 47 49 48 50 std::ostream & ast::operator<< ( std::ostream & out, const ast::Node * node ) { 49 (void)node; 50 #warning unimplemented 51 assertf(false, "Unimplemented"); 51 print(out, node); 52 52 return out; 53 53 }
Note: See TracChangeset
for help on using the changeset viewer.