Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Node.cpp

    r10a1225 r733074e  
    1616#include "Node.hpp"
    1717#include "Fwd.hpp"
     18
     19#include <iostream>
    1820
    1921#include "Attribute.hpp"
     
    4244        assign( r );
    4345        return r;
     46}
     47
     48std::ostream & ast::operator<< ( std::ostream & out, const ast::Node * node ) {
     49        (void)node;
     50        #warning unimplemented
     51        assertf(false, "Unimplemented");
     52        return out;
    4453}
    4554
Note: See TracChangeset for help on using the changeset viewer.