Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
sthiele committed May 22, 2020
1 parent 6dee911 commit 51ca9ba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flatzinc"
version = "0.3.1"
version = "0.3.2"
publish = true
authors = ["Sven Thiele <[email protected]>"]
description = "A FlatZinc parser"
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1743,7 +1743,6 @@ pub enum SetLiteral {
SetInts(Vec<i128>), // possibly empty
}
fn set_literal<'a, E: ParseError<&'a str>>(input: &'a str) -> IResult<&'a str, SetLiteral, E> {
println!("in set_literal: {}", input);
let (input, sl) = alt((
sl_int_range,
sl_float_range,
Expand Down

0 comments on commit 51ca9ba

Please sign in to comment.