1
Fork 0

Change std::kinds to std::markers; flatten std::kinds::marker

[breaking-change]
This commit is contained in:
Nick Cameron 2015-01-06 14:03:46 +13:00
parent 6539cb417f
commit 503709708c
154 changed files with 635 additions and 623 deletions

View file

@ -61,7 +61,7 @@
#![experimental]
use core::kinds::Sized;
use core::markers::Sized;
use ffi::CString;
use clone::Clone;
use fmt;

View file

@ -16,7 +16,7 @@ use hash;
use io::Writer;
use iter::{AdditiveIterator, Extend};
use iter::{Iterator, IteratorExt, Map};
use kinds::Sized;
use markers::Sized;
use option::Option::{self, Some, None};
use slice::{AsSlice, Split, SliceExt, SliceConcatExt};
use str::{self, FromStr, StrExt};