aaron-thesisarm-ehcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change
on this file since 8c97ee7 was
8c97ee7,
checked in by Thierry Delisle <tdelisle@…>, 6 years ago
|
Fixed the pretty printer
|
-
Property mode set to
100644
|
File size:
926 bytes
|
Rev | Line | |
---|
[8c97ee7] | 1 | // -*- Mode: C++ -*- |
---|
| 2 | // |
---|
| 3 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
| 4 | // |
---|
| 5 | // The contents of this file are covered under the licence agreement in the |
---|
| 6 | // file "LICENCE" distributed with Cforall. |
---|
| 7 | // |
---|
| 8 | // parse.h - Various declarations that are needed so that the generated parser |
---|
| 9 | // and lexer compile with C++, and to share information between the |
---|
| 10 | // parser, lexer, and driver program |
---|
| 11 | // |
---|
| 12 | // Author : Richard C. Bilson and Rodolfo G. Esteves |
---|
| 13 | // Created On : Sun Dec 16 15:00:49 2001 |
---|
| 14 | // Last Modified By : Peter A. Buhr |
---|
| 15 | // Last Modified On : Wed Jun 28 22:59:27 2017 |
---|
| 16 | // Update Count : 174 |
---|
| 17 | // |
---|
| 18 | |
---|
| 19 | #ifndef __PARSER_HH__ |
---|
| 20 | #define __PARSER_HH__ |
---|
| 21 | |
---|
| 22 | int yylex(); |
---|
| 23 | |
---|
| 24 | #include <string> |
---|
| 25 | #include <list> |
---|
| 26 | #include "token.h" |
---|
| 27 | |
---|
| 28 | #endif // __PARSER_HH__ |
---|
| 29 | |
---|
| 30 | // Local Variables: // |
---|
| 31 | // mode: c++ // |
---|
| 32 | // tab-width: 4 // |
---|
| 33 | // compile-command: "make install" // |
---|
| 34 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.