Andrew Plumb:

Fixed parsing of '>' operator



git-svn-id: http://svn.clifford.at/openscad/trunk@140 b57f626f-c46c-0410-a088-ec61d464b74c
stl_dim
clifford 2009-12-01 18:38:36 +00:00
parent f0a8e510ed
commit d1c0ad40aa
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ expr:
} |
expr '>' expr {
$$ = new Expression();
$$->type = "<";
$$->type = ">";
$$->children.append($1);
$$->children.append($3);
} |