summary refs log tree commit diff
path: root/src/libcore/fmt
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2018-12-02 12:29:54 +0100
committerRalf Jung <post@ralfj.de>2018-12-02 12:29:54 +0100
commitf4f8b211a8650feff62c69a1dfb5156f692003c3 (patch)
tree36da633f642f4fe5ad01791d4af149954da12281 /src/libcore/fmt
parentf9fb8d64350efdff400c54176a9ac1c3e5da5afd (diff)
downloadrust-f4f8b211a8650feff62c69a1dfb5156f692003c3.tar.gz
rust-f4f8b211a8650feff62c69a1dfb5156f692003c3.zip
let FIXME refer to tracking issue
Diffstat (limited to 'src/libcore/fmt')
-rw-r--r--src/libcore/fmt/float.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/fmt/float.rs b/src/libcore/fmt/float.rs
index 0c1ac90dfd2..3717a783f24 100644
--- a/src/libcore/fmt/float.rs
+++ b/src/libcore/fmt/float.rs
@@ -22,7 +22,7 @@ fn float_to_decimal_common_exact<T>(fmt: &mut Formatter, num: &T,
     unsafe {
         let mut buf = MaybeUninit::<[u8; 1024]>::uninitialized(); // enough for f32 and f64
         let mut parts = MaybeUninit::<[flt2dec::Part; 4]>::uninitialized();
-        // FIXME: Technically, this is calling `get_mut` on an uninitialized
+        // FIXME(#53491): Technically, this is calling `get_mut` on an uninitialized
         // `MaybeUninit` (here and elsewhere in this file).  Revisit this once
         // we decided whether that is valid or not.
         let formatted = flt2dec::to_exact_fixed_str(flt2dec::strategy::grisu::format_exact,