summaryrefslogtreecommitdiffhomepage
path: root/cpp.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-03-27 17:39:58 +0100
committerRoland Reichwein <mail@reichwein.it>2020-03-27 17:39:58 +0100
commit3057729f132d516dd9ed58c6964a495aa1c11c3d (patch)
tree7eca9a03fd08200868a5ab0c27e33170b9dc917a /cpp.h
parent5467147d9470ee294ddab938098c3ef172222066 (diff)
Top-down algo recognizes first C*+ program
Diffstat (limited to 'cpp.h')
-rw-r--r--cpp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp.h b/cpp.h
index 282c83d..316eaa3 100644
--- a/cpp.h
+++ b/cpp.h
@@ -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