We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01fbc5a commit a3c4c2eCopy full SHA for a3c4c2e
1 file changed
library/core/src/num/mod.rs
@@ -4,12 +4,14 @@
4
5
use crate::ascii;
6
use crate::convert::TryInto;
7
-use crate::error::Error;
8
use crate::intrinsics;
9
use crate::mem;
10
use crate::ops::{Add, Mul, Sub};
11
use crate::str::FromStr;
12
+#[cfg(not(no_fp_fmt_parse))]
13
+use crate::error::Error;
14
+
15
// Used because the `?` operator is not allowed in a const context.
16
macro_rules! try_opt {
17
($e:expr) => {
0 commit comments