Skip to content

Commit

Permalink
iox-#2055 Fix lambda complaint from MSVC
Browse files Browse the repository at this point in the history
Signed-off-by: Dennis Liu <[email protected]>
  • Loading branch information
Dennis40816 committed Jan 7, 2024
1 parent cb6b50a commit a9ff0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceoryx_hoofs/test/moduletests/test_utility_convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ TEST_F(convert_test, fromString_Integer_InvalidTrailingChar_Fail)
}
};

std::apply([&](auto... args) { (..., expect_failure(args)); }, IntegerType{});
std::apply([&expect_failure](auto... args) { (..., expect_failure(args)); }, IntegerType{});
}

/// SINGED INTEGRAL EDGE CASES START
Expand Down

0 comments on commit a9ff0cb

Please sign in to comment.