Skip to content

Commit

Permalink
removed duplicate ;
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5674 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Aug 8, 2006
1 parent 68ec30c commit 7fbe38d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgssearchstringparser.yy
Expand Up @@ -98,7 +98,7 @@ search_cond:
| search_cond AND search_cond { $$ = new QgsSearchTreeNode(QgsSearchTreeNode::opAND, $1, $3); joinTmpNodes($$,$1,$3); }
| NOT search_cond { $$ = new QgsSearchTreeNode(QgsSearchTreeNode::opNOT, $2, 0); joinTmpNodes($$,$2, 0); }
| '(' search_cond ')' { $$ = $2; }
| predicate;
| predicate
;

// more predicates to come
Expand Down

0 comments on commit 7fbe38d

Please sign in to comment.