Skip to content

Commit a9ff0cb

Browse files
committed
iox-#2055 Fix lambda complaint from MSVC
Signed-off-by: Dennis Liu <[email protected]>
1 parent cb6b50a commit a9ff0cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iceoryx_hoofs/test/moduletests/test_utility_convert.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ TEST_F(convert_test, fromString_Integer_InvalidTrailingChar_Fail)
339339
}
340340
};
341341

342-
std::apply([&](auto... args) { (..., expect_failure(args)); }, IntegerType{});
342+
std::apply([&expect_failure](auto... args) { (..., expect_failure(args)); }, IntegerType{});
343343
}
344344

345345
/// SINGED INTEGRAL EDGE CASES START

0 commit comments

Comments
 (0)