Skip to content

Commit

Permalink
Left some operators out.
Browse files Browse the repository at this point in the history
  • Loading branch information
nibblebits committed Apr 8, 2017
1 parent 131e33a commit 28039e7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Compiler/src/Compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,12 @@ bool Compiler::isAssignmentOperator(std::string value)
value == "+=" ||
value == "-=" ||
value == "*=" ||
value == "/=";
value == "/=" ||
value == "^=" ||
value == "&=" ||
value == "|=" ||
value == "<<=" ||
value == ">>=";
}

long Compiler::getNumberFromString(std::string str, char formatting_symbol)
Expand Down

0 comments on commit 28039e7

Please sign in to comment.