Fix the name of the 32bits feature (#82)

So that it matches the Cargo.toml
This commit is contained in:
Pierre Krieger 2018-04-04 17:14:43 +02:00 committed by Sergey Pepyakin
parent d12a04f8ff
commit 4c2995ca98
1 changed files with 2 additions and 2 deletions

View File

@ -102,10 +102,10 @@ extern crate parity_wasm;
extern crate byteorder;
extern crate memory_units as memory_units_crate;
#[cfg(all(not(feature = "32bit_opt_in"), target_pointer_width = "32"))]
#[cfg(all(not(feature = "opt-in-32bit"), target_pointer_width = "32"))]
compile_error! {
"32-bit targets are not supported at the moment.
You can use '32bit_opt_in' feature.
You can use 'opt-in-32bit' feature.
See https://github.com/pepyakin/wasmi/issues/43"
}