Add newline in compile_error!
This doesn't change the actual message.
This commit is contained in:
parent
e273b9e40a
commit
e5056e7871
|
@ -103,7 +103,8 @@ extern crate byteorder;
|
||||||
extern crate memory_units as memory_units_crate;
|
extern crate memory_units as memory_units_crate;
|
||||||
|
|
||||||
#[cfg(all(not(feature = "32bit_opt_in"), target_pointer_width = "32"))]
|
#[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.
|
You can use '32bit_opt_in' feature.
|
||||||
See https://github.com/pepyakin/wasmi/issues/43"
|
See https://github.com/pepyakin/wasmi/issues/43"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue