diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-03-27 17:39:58 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-03-27 17:39:58 +0100 |
commit | 3057729f132d516dd9ed58c6964a495aa1c11c3d (patch) | |
tree | 7eca9a03fd08200868a5ab0c27e33170b9dc917a /cpp.h | |
parent | 5467147d9470ee294ddab938098c3ef172222066 (diff) |
Top-down algo recognizes first C*+ program
Diffstat (limited to 'cpp.h')
-rw-r--r-- | cpp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ void preprocess(); // phase 4 void execution_charset_map(); // phase 5 void concatenate_strings(); // phase 6 std::vector<Token> tokens_from_pptokens(std::vector<Token> pp_tokens); // phase 7.a -std::pair<index_t, std::vector<Gram::TreeNode>> analysis(std::vector<Token>); // phase 7.b +std::vector<Gram::TreeNode> analysis(std::vector<Token>); // phase 7.b void translate(); // phase 7.c void instantiate(); // phase 8 void link(); // phase 9 |