Skip to content
Snippets Groups Projects
Commit f5023d71 authored by Mattias Ajander's avatar Mattias Ajander
Browse files

Fixed a compiler warning

parent b8ab6de2
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ enum class TokenType
MINUS_ASSIGN, ///< Subtract and assign operator (-=)
MULTIPLY_ASSIGN, ///< Multiply and assign operator (*=)
DIVIDE_ASSIGN, ///< Divide and assign operator (/=)
PERCENT_ASSIGN, ///< Modulo and assign operator (%=)
MODULO_ASSIGN, ///< Modulo and assign operator (%=)
// Comparison operators
EQUAL, ///< Equality operator (==)
......
......@@ -43,6 +43,7 @@ String token_type_to_string(TokenType token)
case TokenType::MINUS_ASSIGN: return "-=";
case TokenType::MULTIPLY_ASSIGN: return "*=";
case TokenType::DIVIDE_ASSIGN: return "/=";
case TokenType::MODULO_ASSIGN: return "%=";
case TokenType::EQUAL: return "==";
case TokenType::NOT_EQUAL: return "!=";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment