mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 02:40:53 +01:00
Thanks gcc, we know you can't compile code.
This commit is contained in:
parent
86b62ac14f
commit
78039f4535
1 changed files with 3 additions and 1 deletions
|
@ -5929,7 +5929,9 @@ void TypeChecker::resolve(const EqPredicate& eqP, ErrorVec& errVec, RefinementMa
|
|||
if (!sense || canUnify(eqP.type, option, eqP.location).empty())
|
||||
return sense ? eqP.type : option;
|
||||
|
||||
return std::nullopt;
|
||||
// local variable works around an odd gcc 9.3 warning: <anonymous> may be used uninitialized
|
||||
std::optional<TypeId> res = std::nullopt;
|
||||
return res;
|
||||
}
|
||||
|
||||
return option;
|
||||
|
|
Loading…
Add table
Reference in a new issue