/* * This file is part of the Cforall project * * $Id: Resolver.h,v 1.3 2005/08/29 20:14:16 rcbilson Exp $ * */ #ifndef RESOLVEXPR_RESOLVER_H #define RESOLVEXPR_RESOLVER_H #include "SynTree/SynTree.h" #include "SymTab/Indexer.h" namespace ResolvExpr { void resolve( std::list< Declaration* > translationUnit ); Expression *resolveInVoidContext( Expression *expr, const SymTab::Indexer &indexer ); } // namespace ResolvExpr #endif /* #ifndef RESOLVEXPR_RESOLVER_H */