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 6397a5b commit d622034Copy full SHA for d622034
src/Parser.h
@@ -32,13 +32,13 @@ namespace FPL {
32
std::optional<Statement> CheckerValue();
33
34
35
- // Print : In the ManagerInstruction
+ // Print :
36
+ bool PrintInstruction(auto parseStart);
37
38
// Variable :
39
std::map<std::string, VariableDefinition> mVariables;
40
bool isVariable(std::string &name);
- bool VariableInstruction(auto parseStart);
41
- bool PrintInstruction(auto parseStart);
+ bool VariableInstruction();
42
43
// Fonctions :
44
bool FunctionChecker(auto parseStart);
@@ -52,6 +52,6 @@ namespace FPL {
52
53
bool ManagerInstruction();
54
55
- bool ChangerInstruction(auto parseStart);
+ bool ChangerInstruction();
56
};
57
}
0 commit comments