Skip to content

Commit 894763f

Browse files
committed
Fix deprecation warnings
1 parent a4ea4ff commit 894763f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ use std::cmp::Ordering;
1010
use std::fmt;
1111
use std::i32;
1212
use std::i64;
13-
use std::marker::MarkerTrait;
1413
use std::marker::PhantomData;
1514

1615
use time::Timespec;
@@ -162,7 +161,7 @@ pub enum BoundSide {
162161

163162
/// A trait implemented by phantom types indicating the type of the bound
164163
#[doc(hidden)]
165-
pub trait BoundSided: MarkerTrait {
164+
pub trait BoundSided {
166165
/// Returns the bound side this type corresponds to
167166
fn side() -> BoundSide;
168167
}

0 commit comments

Comments
 (0)