remove unused variable
This commit is contained in:
parent
fd0ed46225
commit
3e7146911b
1 changed files with 0 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue