Remove backslashes

This commit is contained in:
Kampfkarren 2022-07-27 16:36:05 -07:00
parent dd2c4e9391
commit 8dcbebaa70

View file

@ -91,15 +91,15 @@ Lexeme::Lexeme(const Location& location, Type type, const char* data, size_t siz
, length(unsigned(size)) , length(unsigned(size))
, data(data) , data(data)
{ {
LUAU_ASSERT( \ LUAU_ASSERT(
type == RawString \ type == RawString
|| type == QuotedString \ || type == QuotedString
|| type == InterpStringBegin \ || type == InterpStringBegin
|| type == InterpStringMid \ || type == InterpStringMid
|| type == InterpStringEnd \ || type == InterpStringEnd
|| type == Number \ || type == Number
|| type == Comment \ || type == Comment
|| type == BlockComment \ || type == BlockComment
); );
} }