mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-19 17:28:06 +00:00
default initialize
This commit is contained in:
parent
68b9214b03
commit
507832b1f0
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue