mirror of
https://github.com/Naios/continuable.git
synced 2026-01-01 03:12:12 +08:00
Fix the GCC build after bc4d69735
This commit is contained in:
parent
03ae1b5c45
commit
67d77808dc
@ -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;
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user