Add newline in compile_error!

This doesn't change the actual message.
This commit is contained in:
Sergey Pepyakin 2018-02-13 18:17:38 +03:00
parent e273b9e40a
commit e5056e7871
1 changed files with 2 additions and 1 deletions

View File

@ -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"
}