We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1790d14 commit ad544deCopy full SHA for ad544de
src/overpass_api/statements/area_query.cc
@@ -298,7 +298,7 @@ bool Area_Constraint::delivers_data(Resource_Manager& rman)
298
it(area_locations_db.flat_begin());
299
!(it == area_locations_db.flat_end()); ++it)
300
{
301
- if (area->get_submitted_id() == it.object().id.val())
+ if (area->get_submitted_id() == it.handle().object().id.val())
302
counter += it.object().used_indices.size();
303
}
304
@@ -314,8 +314,8 @@ bool Area_Constraint::delivers_data(Resource_Manager& rman)
314
for (vector< Area_Skeleton >::const_iterator it2 = it->second.begin(); it2 != it->second.end(); ++it2)
315
counter += it2->used_indices.size();
316
317
-
318
+
319
return (counter <= 12);
320
321
0 commit comments