fix(parse): Change ignore_hex default

This commit is contained in:
Ed Page 2019-08-07 07:24:54 -05:00
parent 6ae42b4c1e
commit 50c89ef761

View file

@ -35,7 +35,7 @@ impl ParserBuilder {
impl Default for ParserBuilder {
fn default() -> Self {
Self { ignore_hex: false }
Self { ignore_hex: true }
}
}