Skip to content

Commit

Permalink
fix compilation of value combinator
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed May 19, 2018
1 parent 0004181 commit 64af2d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ macro_rules! value (
);
($i:expr, $res:expr) => (
{
let res: IResult<_,_> = Ok(($i, $res));
let res: $crate::IResult<_,_> = Ok(($i, $res));
res
}
);
Expand Down

0 comments on commit 64af2d1

Please sign in to comment.