Skip to content

Commit

Permalink
Merge #2570
Browse files Browse the repository at this point in the history
2570: Fix: default-native into default-dylib r=syrusakbary a=audioXD

This should be default-dylib because the feature default-native doesn't exist/ has been renamed.

Co-authored-by: audioXD <audioXD@users.noreply.github.com>
  • Loading branch information
bors[bot] and audioXD authored Sep 12, 2021
2 parents ab3d776 + f6fe638 commit 6ee5540
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 6ee5540

Please sign in to comment.