From 4c2995ca9893e0d711cd63ca261ef25dc60d10f9 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 4 Apr 2018 17:14:43 +0200 Subject: [PATCH] Fix the name of the 32bits feature (#82) So that it matches the Cargo.toml --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 697cec4..618ae75 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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" }