Skip to content

Commit

Permalink
fix: fixes a trait that's marked private accidentlly, but should be c…
Browse files Browse the repository at this point in the history
…rate internal public
  • Loading branch information
kbknapp committed Feb 21, 2017
1 parent 10ca4d1 commit 1ae2110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osstringext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::ffi::OsStr;
use std::os::unix::ffi::OsStrExt;

#[cfg(target_os = "windows")]
trait OsStrExt3 {
pub trait OsStrExt3 {
fn from_bytes(b: &[u8]) -> &Self;
fn as_bytes(&self) -> &[u8];
}
Expand Down

0 comments on commit 1ae2110

Please sign in to comment.