Auto merge of #21937 - alexcrichton:issue-21929, r=aturon

These were forgotten reexports from #21718

Closes #21929
This commit is contained in:
bors
2015-02-10 06:39:31 +00:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -80,7 +80,7 @@
pub use core::str::{Split, SplitTerminator};
pub use core::str::{SplitN, RSplitN};
pub use core::str::{from_utf8, CharEq, Chars, CharIndices, Bytes};
pub use core::str::{from_utf8_unchecked, from_c_str};
pub use core::str::{from_utf8_unchecked, from_c_str, ParseBoolError};
pub use unicode::str::{Words, Graphemes, GraphemeIndices};
/*
+1 -1
View File
@@ -29,7 +29,7 @@
pub use core::num::{from_uint, from_u8, from_u16, from_u32, from_u64};
pub use core::num::{from_f32, from_f64};
pub use core::num::{FromStrRadix, from_str_radix};
pub use core::num::{FpCategory};
pub use core::num::{FpCategory, ParseIntError, ParseFloatError};
use option::Option;