Skip to content

Commit 6f25280

Browse files
author
Clar Charr
committed
Fix missing imports.
1 parent c174382 commit 6f25280

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/ops/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,9 @@
149149

150150
mod markers;
151151

152-
pub use markers::Drop;
152+
pub use markers::{Drop, Index, IndexMut, Deref, DerefMut};
153+
pub use markers::{Fn, FnMut, FnOnce, CoerceUnsized};
154+
pub use markers::{Place, InPlace, Boxed, BoxPlace, Carrier};
153155

154156
pub use num::{Add, Sub, Mul, Div, Rem, Neg};
155157
pub use num::{AddAssign, SubAssign, MulAssign, DivAssign, RemAssign};
@@ -159,5 +161,3 @@ pub use bit::{BitAndAssign, BitOrAssign, BitXorAssign, ShlAssign, ShrAssign};
159161

160162
pub use range::{RangeFull, Range, RangeFrom, RangeTo};
161163
pub use range::{RangeInclusive, RangeToInclusive};
162-
163-
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)