Skip to content

Commit da33166

Browse files
committed
Comment out unused parameters
1 parent 7387523 commit da33166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/t/index/test_relations_map.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ TEST_CASE("RelationsMapStash n:m results") {
172172

173173
int count = 0;
174174

175-
index.for_each(2, [&](osmium::unsigned_object_id_type id) {
175+
index.for_each(2, [&](osmium::unsigned_object_id_type /*id*/) {
176176
REQUIRE(false);
177177
});
178178
index.for_each(3, [&](osmium::unsigned_object_id_type id) {
@@ -269,7 +269,7 @@ TEST_CASE("RelationsMapStash reverse index with 64bit values") {
269269

270270
int count = 0;
271271

272-
index.for_each(1, [&](osmium::unsigned_object_id_type id) {
272+
index.for_each(1, [&](osmium::unsigned_object_id_type /*id*/) {
273273
REQUIRE(false);
274274
});
275275
index.for_each(2, [&](osmium::unsigned_object_id_type id) {

0 commit comments

Comments
 (0)