Skip to content

Commit

Permalink
Fixed a bug (removed invalid keyword)
Browse files Browse the repository at this point in the history
  • Loading branch information
nibblebits committed Apr 9, 2017
1 parent a3b32a2 commit 8c8b8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/src/Lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
const char operators[] = {'=', '+', '-', '/', '*', '<', '>', '&', '|', '^', '%', '!'};
const char symbols[] = {'(', ')', ',', '#', '{', '}', '.', '[', ']', ';'};
const std::string general_keywords[] = {
"if", "for", "do", "while", "continue", "break", "switch", "__asm", "string", "else", "return", "include", "ifdef", "ifndef", "define"
"if", "for", "do", "while", "continue", "break", "switch", "__asm", "else", "return", "include", "ifdef", "ifndef", "define"
};

const std::string data_type_keywords[] = {
Expand Down

0 comments on commit 8c8b8df

Please sign in to comment.