mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01: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
1 changed files with 7 additions and 0 deletions
|
@ -2528,4 +2528,11 @@ LUAU_NOINLINE void ConstraintSolver::throwUserCancelError()
|
||||||
throw UserCancelError(currentModuleName);
|
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
|
} // namespace Luau
|
||||||
|
|
Loading…
Add table
Reference in a new issue