Skip to content

Commit 6c0ae93

Browse files
committed
hint: Update the tracking issue for likely_unlikely
These were split from the `cold_path` tracking issue.
1 parent a694b50 commit 6c0ae93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

library/core/src/hint.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ pub const fn must_use<T>(value: T) -> T {
649649
/// }
650650
/// }
651651
/// ```
652-
#[unstable(feature = "likely_unlikely", issue = "136873")]
652+
#[unstable(feature = "likely_unlikely", issue = "151619")]
653653
#[inline(always)]
654654
pub const fn likely(b: bool) -> bool {
655655
crate::intrinsics::likely(b)
@@ -699,7 +699,7 @@ pub const fn likely(b: bool) -> bool {
699699
/// }
700700
/// }
701701
/// ```
702-
#[unstable(feature = "likely_unlikely", issue = "136873")]
702+
#[unstable(feature = "likely_unlikely", issue = "151619")]
703703
#[inline(always)]
704704
pub const fn unlikely(b: bool) -> bool {
705705
crate::intrinsics::unlikely(b)

0 commit comments

Comments
 (0)