Skip to content

Commit 5011671

Browse files
committed
remove 'const' from 'Option::iter'
1 parent fee6300 commit 5011671

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/option.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1338,9 +1338,8 @@ impl<T> Option<T> {
13381338
/// assert_eq!(x.iter().next(), None);
13391339
/// ```
13401340
#[inline]
1341-
#[rustc_const_unstable(feature = "const_option", issue = "67441")]
13421341
#[stable(feature = "rust1", since = "1.0.0")]
1343-
pub const fn iter(&self) -> Iter<'_, T> {
1342+
pub fn iter(&self) -> Iter<'_, T> {
13441343
Iter { inner: Item { opt: self.as_ref() } }
13451344
}
13461345

0 commit comments

Comments
 (0)