Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Feb 26, 2015
1 parent e54fbb9 commit 4949f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ macro_rules! is_a(
let bytes = as_bytes(&expected);

for idx in 0..input.len() {
var res = false
var res = false;
for &i in bytes.iter() {
if input[idx] == i {
res = true
Expand Down

0 comments on commit 4949f71

Please sign in to comment.