source: src/ResolvExpr/CandidateFinder.cpp @ 2773ab8

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 2773ab8 was 2773ab8, checked in by Aaron Moss <a3moss@…>, 5 years ago

Add new resolver overload for WaitForStmt?

  • Property mode set to 100644
File size: 995 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// CandidateFinder.cpp --
8//
9// Author           : Aaron B. Moss
10// Created On       : Wed Jun 5 14:30:00 2019
11// Last Modified By : Aaron B. Moss
12// Last Modified On : Wed Jun 5 14:30:00 2019
13// Update Count     : 1
14//
15
16#include "CandidateFinder.hpp"
17
18#include "AST/Expr.hpp"
19
20namespace ResolvExpr {
21
22void CandidateFinder::find( const ast::Expr * expr, ResolvMode mode ) {
23        #warning unimplemented
24        (void)expr; (void)mode;
25        assert(false);
26}
27
28std::vector< CandidateFinder > CandidateFinder::findSubExprs( 
29        const std::vector< ast::ptr< ast::Expr > > & xs
30) {
31        std::vector< CandidateFinder > out;
32
33        #warning unimplemented
34        (void)xs;
35        assert(false);
36
37        return out;
38}
39
40} // namespace ResolvExpr
41
42// Local Variables: //
43// tab-width: 4 //
44// mode: c++ //
45// compile-command: "make install" //
46// End: //
Note: See TracBrowser for help on using the repository browser.