From 507832b1f059157a17969fc2b1b3ec983e6d5f54 Mon Sep 17 00:00:00 2001 From: Vighnesh Date: Fri, 11 Oct 2024 15:05:31 -0700 Subject: [PATCH] default initialize --- Analysis/include/Luau/Differ.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Analysis/include/Luau/Differ.h b/Analysis/include/Luau/Differ.h index d9b78939..9347729a 100644 --- a/Analysis/include/Luau/Differ.h +++ b/Analysis/include/Luau/Differ.h @@ -158,8 +158,8 @@ struct DifferEnvironment { TypeId rootLeft; TypeId rootRight; - std::optional externalSymbolLeft; - std::optional externalSymbolRight; + std::optional externalSymbolLeft = std::nullopt; + std::optional externalSymbolRight = std::nullopt; DenseHashMap genericMatchedPairs; DenseHashMap genericTpMatchedPairs;