We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dee181 commit 2671fd7Copy full SHA for 2671fd7
main.cpp
@@ -1,5 +1,6 @@
1
#include "src/TokenBuilding.h"
2
#include "src/Parser.h"
3
+#include "src/FonctionDefinition.h"
4
#include <iostream>
5
#include <string>
6
#include <optional>
@@ -16,6 +17,6 @@ int main() {
16
17
FPL::TokenBuilding t;
18
std::vector<FPL::Token> tokens = t.parseToken(f_content);
19
FPL::Parser parser;
- parser.parse(tokens, std::nullopt);
20
+ parser.parse(tokens, (std::optional<FPL::FonctionDefinition> &) std::nullopt);
21
return 0;
22
}
0 commit comments