We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbbabf commit 2879cc3Copy full SHA for 2879cc3
src/lib.rs
@@ -50,9 +50,10 @@ compile_error!("at least one of the `std` or `no-std` features must be enabled")
50
51
// Disable 16-bit support at least for now as we can't guarantee it yet.
52
#[cfg(target_pointer_width = "16")]
53
-compile_error!("rust-bitcoin currently only supports architectures with pointers wider
54
- than 16 bits, let us know if you want 16-bit support. Note that we do
55
- NOT guarantee that we will implement it!");
+compile_error!(
+ "rust-bitcoin currently only supports architectures with pointers wider than 16 bits, let us
+ know if you want 16-bit support. Note that we do NOT guarantee that we will implement it!"
56
+);
57
58
#[cfg(bench)] extern crate test;
59
0 commit comments