make multi-threaded the default again

This commit is contained in:
Folkert 2022-04-21 00:50:05 +02:00
parent 35b560f14d
commit a1c0cdaeb1
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -1110,7 +1110,7 @@ pub fn load<'a>(
) -> Result<LoadResult<'a>, LoadingProblem<'a>> {
// When compiling to wasm, we cannot spawn extra threads
// so we have a single-threaded implementation
if true || cfg!(target_family = "wasm") {
if cfg!(target_family = "wasm") {
load_single_threaded(
arena,
load_start,