Skip to content

Commit 0dc4621

Browse files
committed
add some FIXME(const-hack)
1 parent 72723d7 commit 0dc4621

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ impl<T> Option<&T> {
18941894
where
18951895
T: Copy,
18961896
{
1897-
// FIXME: this implementation, which sidesteps using `Option::map` since it's not const
1897+
// FIXME(const-hack): this implementation, which sidesteps using `Option::map` since it's not const
18981898
// ready yet, should be reverted when possible to avoid code repetition
18991899
match self {
19001900
Some(&v) => Some(v),

core/src/result.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1540,7 +1540,7 @@ impl<T, E> Result<&T, E> {
15401540
where
15411541
T: Copy,
15421542
{
1543-
// FIXME: this implementation, which sidesteps using `Result::map` since it's not const
1543+
// FIXME(const-hack): this implementation, which sidesteps using `Result::map` since it's not const
15441544
// ready yet, should be reverted when possible to avoid code repetition
15451545
match self {
15461546
Ok(&v) => Ok(v),

0 commit comments

Comments
 (0)