Skip to content

Commit

Permalink
Auto merge of rust-lang#21937 - alexcrichton:issue-21929, r=aturon
Browse files Browse the repository at this point in the history
These were forgotten reexports from rust-lang#21718

Closes rust-lang#21929
  • Loading branch information
bors committed Feb 10, 2015
2 parents 0bfe358 + f77dd70 commit 29ff00c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libcollections/str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub use core::str::{Lines, LinesAny, MatchIndices, SplitStr, CharRange};
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};

/*
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/num/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub use core::num::{from_int, from_i8, from_i16, from_i32, from_i64};
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;

Expand Down

0 comments on commit 29ff00c

Please sign in to comment.