mirror of
https://github.com/Naios/continuable.git
synced 2026-02-09 11:16:40 +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;
|
promise<> all;
|
||||||
bool resolved = false;
|
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);
|
EXPECT_FALSE(resolved);
|
||||||
resolved = true;
|
resolved = true;
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user