Fix the GCC build after bc4d69735

This commit is contained in:
Denis Blank 2019-03-12 14:44:15 +01:00
parent 03ae1b5c45
commit 67d77808dc

View File

@ -51,7 +51,8 @@ TYPED_TEST(single_dimension_tests, operations_split_plain_callback) {
promise<> all;
bool resolved = false;
all = split(std::move(all), [&](auto&&...) {
all = split(std::move(all), [&](auto&&... args) {
detail::util::unused(args...); // GCC build fix
EXPECT_FALSE(resolved);
resolved = true;
});