added forgotten use for map

This commit is contained in:
Vadim Getmanshchuk 2020-03-04 20:12:50 -08:00 committed by GitHub
parent 350109e29a
commit 4ed378772b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,6 +96,7 @@ use nom::character::complete::{digit1, multispace0, space0 };
use nom::{IResult};
use nom::{ delimited,none_of,peek,is_not,complete,terminated,tag,
alt,do_parse,opt,named,map,map_res,eof,many0,take,take_until,char};
use nom::combinator::map;
use std::str;
use std::f32;