ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
pthread-emulation
qualifiedEnum
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 | // SatisfyAssertions.cpp --
|
---|
8 | //
|
---|
9 | // Author : Aaron B. Moss
|
---|
10 | // Created On : Mon Jun 10 17:45:00 2019
|
---|
11 | // Last Modified By : Aaron B. Moss
|
---|
12 | // Last Modified On : Mon Jun 10 17:45:00 2019
|
---|
13 | // Update Count : 1
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include "SatisfyAssertions.hpp"
|
---|
17 |
|
---|
18 | #include <cassert>
|
---|
19 |
|
---|
20 | namespace ResolvExpr {
|
---|
21 |
|
---|
22 | void satisfyAssertions(
|
---|
23 | Candidate & alt, const ast::SymbolTable & symtab, CandidateList & out,
|
---|
24 | std::vector<std::string> & errors
|
---|
25 | ) {
|
---|
26 | #warning unimplemented
|
---|
27 | (void)alt; (void)symtab; (void)out; (void)errors;
|
---|
28 | assert(false);
|
---|
29 | }
|
---|
30 |
|
---|
31 | } // namespace ResolvExpr
|
---|
32 |
|
---|
33 | // Local Variables: //
|
---|
34 | // tab-width: 4 //
|
---|
35 | // mode: c++ //
|
---|
36 | // compile-command: "make install" //
|
---|
37 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.