Skip to content

Commit

Permalink
default initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
Vighnesh-V committed Oct 11, 2024
1 parent 68b9214 commit 507832b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Analysis/include/Luau/Differ.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ struct DifferEnvironment
{
TypeId rootLeft;
TypeId rootRight;
std::optional<std::string> externalSymbolLeft;
std::optional<std::string> externalSymbolRight;
std::optional<std::string> externalSymbolLeft = std::nullopt;
std::optional<std::string> externalSymbolRight = std::nullopt;
DenseHashMap<TypeId, TypeId> genericMatchedPairs;
DenseHashMap<TypePackId, TypePackId> genericTpMatchedPairs;

Expand Down

0 comments on commit 507832b

Please sign in to comment.