remove unused variable

This commit is contained in:
Artem Pavlenko 2018-10-02 09:43:07 +01:00
parent fd0ed46225
commit 3e7146911b

View file

@ -50,7 +50,6 @@ svg_points_grammar<Iterator, PathType,SkipType>::svg_points_grammar()
// commands // commands
function<move_to> move_to_; function<move_to> move_to_;
function<line_to> line_to_; function<line_to> line_to_;
function<close> close_;
start = coord[move_to_(_r1, _1, false)] // move_to start = coord[move_to_(_r1, _1, false)] // move_to
>> *(-lit(',') >> coord [ line_to_(_r1, _1,false) ] ); // *line_to >> *(-lit(',') >> coord [ line_to_(_r1, _1,false) ] ); // *line_to