Skip to content

Commit

Permalink
Fix missing imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
clarfonthey committed May 27, 2017
1 parent c174382 commit 6f25280
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libcore/ops/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@

mod markers;

pub use markers::Drop;
pub use markers::{Drop, Index, IndexMut, Deref, DerefMut};
pub use markers::{Fn, FnMut, FnOnce, CoerceUnsized};
pub use markers::{Place, InPlace, Boxed, BoxPlace, Carrier};

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

pub use range::{RangeFull, Range, RangeFrom, RangeTo};
pub use range::{RangeInclusive, RangeToInclusive};

#[stable(feature = "rust1", since = "1.0.0")]

0 comments on commit 6f25280

Please sign in to comment.