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 f067164 commit b780435Copy full SHA for b780435
src/Parser.h
@@ -37,14 +37,14 @@ namespace FPL {
37
38
// Variable :
39
std::map<std::string, VariableDefinition> mVariables;
40
- bool isVariable(std::string &name);
+ bool isVariable(std::string &name) const;
41
bool VariableInstruction();
42
bool ChangerInstruction();
43
44
// Fonctions :
45
bool FonctionInstruction(auto parseStart);
46
bool AppelerInstruction();
47
- bool isFonction(std::string &name);
+ bool isFonction(std::string &name) const;
48
std::map<std::string, FonctionDefinition> mFonctions;
49
50
0 commit comments