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))
, 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
);
}