diff --git a/Ast/src/Lexer.cpp b/Ast/src/Lexer.cpp index 90c3577f..92f460f6 100644 --- a/Ast/src/Lexer.cpp +++ b/Ast/src/Lexer.cpp @@ -91,15 +91,15 @@ Lexeme::Lexeme(const Location& location, Type type, const char* data, size_t siz , length(unsigned(size)) , data(data) { - LUAU_ASSERT( \ - type == RawString \ - || type == QuotedString \ - || type == InterpStringBegin \ - || type == InterpStringMid \ - || type == InterpStringEnd \ - || type == Number \ - || type == Comment \ - || type == BlockComment \ + LUAU_ASSERT( + type == RawString + || type == QuotedString + || type == InterpStringBegin + || type == InterpStringMid + || type == InterpStringEnd + || type == Number + || type == Comment + || type == BlockComment ); }