From 8dcbebaa708d2ae1fe5263995d1206a1fdb90a72 Mon Sep 17 00:00:00 2001 From: Kampfkarren Date: Wed, 27 Jul 2022 16:36:05 -0700 Subject: [PATCH] Remove backslashes --- Ast/src/Lexer.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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 ); }