From e5056e7871760e2994882a3df3f4fa283dd57c69 Mon Sep 17 00:00:00 2001 From: Sergey Pepyakin Date: Tue, 13 Feb 2018 18:17:38 +0300 Subject: [PATCH] Add newline in compile_error! This doesn't change the actual message. --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index f87f156..467b59e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -103,7 +103,8 @@ extern crate byteorder; extern crate memory_units as memory_units_crate; #[cfg(all(not(feature = "32bit_opt_in"), target_pointer_width = "32"))] -compile_error! {"32-bit targets are not supported at the moment. +compile_error! { +"32-bit targets are not supported at the moment. You can use '32bit_opt_in' feature. See https://github.com/pepyakin/wasmi/issues/43" }