Skip to content

Commit d7842e0

Browse files
authored
OSS cleanup - Sync/upstream/647 introduced unecessary new lines in Differ.cpp - this cleans it up (#1472)
1 parent 77295c3 commit d7842e0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Analysis/src/Differ.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace Luau
1515
{
16-
1716
std::string DiffPathNode::toString() const
1817
{
1918
switch (kind)
@@ -945,14 +944,12 @@ std::vector<std::pair<TypeId, TypeId>>::const_reverse_iterator DifferEnvironment
945944
return visitingStack.crend();
946945
}
947946

948-
949947
DifferResult diff(TypeId ty1, TypeId ty2)
950948
{
951949
DifferEnvironment differEnv{ty1, ty2, std::nullopt, std::nullopt};
952950
return diffUsingEnv(differEnv, ty1, ty2);
953951
}
954952

955-
956953
DifferResult diffWithSymbols(TypeId ty1, TypeId ty2, std::optional<std::string> symbol1, std::optional<std::string> symbol2)
957954
{
958955
DifferEnvironment differEnv{ty1, ty2, symbol1, symbol2};

0 commit comments

Comments
 (0)