about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-09-08 16:35:34 +0200
committerRalf Jung <post@ralfj.de>2024-09-08 23:08:40 +0200
commit332fa6aa6ed70e285c155d112a30027947cad12b (patch)
treed4ebc868716922f5724abbc262b177e31893ceb9 /library/std/src
parent7f9a541059b1bf5322e94668792e933a48975917 (diff)
downloadrust-332fa6aa6ed70e285c155d112a30027947cad12b.tar.gz
rust-332fa6aa6ed70e285c155d112a30027947cad12b.zip
add FIXME(const-hack)
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys/pal/windows/args.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/windows/args.rs b/library/std/src/sys/pal/windows/args.rs
index 66e75a83571..77d82678f1d 100644
--- a/library/std/src/sys/pal/windows/args.rs
+++ b/library/std/src/sys/pal/windows/args.rs
@@ -20,7 +20,7 @@ use crate::{fmt, io, iter, vec};
 
 /// This is the const equivalent to `NonZero::new(n).unwrap()`
 ///
-/// FIXME: This can be removed once `Option::unwrap` is stably const.
+/// FIXME(const-hack): This can be removed once `Option::unwrap` is stably const.
 /// See the `const_option` feature (#67441).
 const fn non_zero_u16(n: u16) -> NonZero<u16> {
     match NonZero::new(n) {