File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/overpass_api/output_formats Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ bool Category_Filter::consider(const Node_Skeleton& skel,
134134 if (it_conj != filter_disjunction.end ())
135135 output += print (title_key, skel, tags);
136136
137- return it_conj = = filter_disjunction.end ();
137+ return it_conj ! = filter_disjunction.end ();
138138}
139139
140140
@@ -157,7 +157,7 @@ bool Category_Filter::consider(const Way_Skeleton& skel,
157157 if (it_conj != filter_disjunction.end ())
158158 output += print (title_key, skel, tags);
159159
160- return it_conj = = filter_disjunction.end ();
160+ return it_conj ! = filter_disjunction.end ();
161161}
162162
163163
@@ -180,7 +180,7 @@ bool Category_Filter::consider(const Relation_Skeleton& skel,
180180 if (it_conj != filter_disjunction.end ())
181181 output += print (title_key, skel, tags);
182182
183- return it_conj = = filter_disjunction.end ();
183+ return it_conj ! = filter_disjunction.end ();
184184}
185185
186186
You can’t perform that action at this time.
0 commit comments