Skip to content

Commit

Permalink
Fix default-native into default-dylib
Browse files Browse the repository at this point in the history
This should be default-dylib because the feature default-native doesn't exist/ has been renamed.
  • Loading branch information
audioXD authored Sep 12, 2021
1 parent ab3d776 commit f6fe638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/api/src/sys/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl Default for Store {
if #[cfg(feature = "default-universal")] {
wasmer_engine_universal::Universal::new(config)
.engine()
} else if #[cfg(feature = "default-native")] {
} else if #[cfg(feature = "default-dylib")] {
wasmer_engine_dylib::Dylib::new(config)
.engine()
} else {
Expand Down

0 comments on commit f6fe638

Please sign in to comment.