Skip to content

Commit

Permalink
fix(macros.rs): fix use statements for trait impls
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Apr 19, 2015
1 parent e7f7735 commit 86e4075
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/macros.rs
Expand Up @@ -244,7 +244,7 @@ macro_rules! simple_enum {
$($v),+
}

impl std::str::FromStr for $e {
impl ::std::str::FromStr for $e {
type Err = String;

fn from_str(s: &str) -> Result<Self,Self::Err> {
Expand Down Expand Up @@ -300,7 +300,7 @@ macro_rules! arg_enum {
$($v),+
}

impl std::str::FromStr for $e {
impl ::std::str::FromStr for $e {
type Err = String;

fn from_str(s: &str) -> Result<Self,Self::Err> {
Expand All @@ -321,7 +321,7 @@ macro_rules! arg_enum {
$($v),+
}

impl std::str::FromStr for $e {
impl ::std::str::FromStr for $e {
type Err = String;

fn from_str(s: &str) -> Result<Self,Self::Err> {
Expand All @@ -343,7 +343,7 @@ macro_rules! arg_enum {
$($v),+
}

impl std::str::FromStr for $e {
impl ::std::str::FromStr for $e {
type Err = String;

fn from_str(s: &str) -> Result<Self,Self::Err> {
Expand All @@ -365,7 +365,7 @@ macro_rules! arg_enum {
$($v),+
}

impl std::str::FromStr for $e {
impl ::std::str::FromStr for $e {
type Err = String;

fn from_str(s: &str) -> Result<Self,Self::Err> {
Expand Down

0 comments on commit 86e4075

Please sign in to comment.