// // Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // ResolveAssertions.cc -- // // Author : Aaron B. Moss // Created On : Mon Mar 12 17:05:00 2018 // Last Modified By : Aaron B. Moss // Last Modified On : Mon Mar 12 17:05:00 2018 // Update Count : 1 // #include "ResolveAssertions.h" #include "SynTree/SynTree.h" namespace ResolvExpr { bool resolveAssertions( const Expression* expr ) { // TODO FIXME return expr != nullptr; } } // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //