From 90b7247945466c762f0545334e1aacb7de5d5364 Mon Sep 17 00:00:00 2001 From: Vighnesh Date: Mon, 14 Oct 2024 09:55:46 -0700 Subject: [PATCH] OSS cleanup - Sync/upstream/647 introduced unecessary new lines in Differ.cpp - this cleans it up --- Analysis/src/Differ.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Analysis/src/Differ.cpp b/Analysis/src/Differ.cpp index b2cebc0ba..25687e119 100644 --- a/Analysis/src/Differ.cpp +++ b/Analysis/src/Differ.cpp @@ -13,7 +13,6 @@ namespace Luau { - std::string DiffPathNode::toString() const { switch (kind) @@ -945,14 +944,12 @@ std::vector>::const_reverse_iterator DifferEnvironment return visitingStack.crend(); } - DifferResult diff(TypeId ty1, TypeId ty2) { DifferEnvironment differEnv{ty1, ty2, std::nullopt, std::nullopt}; return diffUsingEnv(differEnv, ty1, ty2); } - DifferResult diffWithSymbols(TypeId ty1, TypeId ty2, std::optional symbol1, std::optional symbol2) { DifferEnvironment differEnv{ty1, ty2, symbol1, symbol2};