mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 06:15:44 +08:00
Fix ConstraintSolver linker errors in release configuration (#1180)
This fixes linker errors reported in https://github.com/luau-lang/luau/issues/1178
This commit is contained in:
parent
443903aa00
commit
9323be6110
@ -2528,4 +2528,11 @@ LUAU_NOINLINE void ConstraintSolver::throwUserCancelError()
|
||||
throw UserCancelError(currentModuleName);
|
||||
}
|
||||
|
||||
// Instantiate private template implementations for external callers
|
||||
template bool ConstraintSolver::unify(NotNull<Scope> scope, Location location, TypeId subType, TypeId superType);
|
||||
template bool ConstraintSolver::unify(NotNull<Scope> scope, Location location, TypePackId subType, TypePackId superType);
|
||||
|
||||
template bool ConstraintSolver::unify(NotNull<const Constraint> constraint, TypeId subTy, TypeId superTy);
|
||||
template bool ConstraintSolver::unify(NotNull<const Constraint> constraint, TypePackId subTy, TypePackId superTy);
|
||||
|
||||
} // namespace Luau
|
||||
|
Loading…
Reference in New Issue
Block a user