Skip to content
Permalink
Browse files
removed duplicate ;
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5674 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Aug 8, 2006
1 parent 183192d commit 8313a13
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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

0 comments on commit 8313a13

Please sign in to comment.