expected icon indicating copy to clipboard operation
expected copied to clipboard

Fix `-Wreturn-type` and `-Wunused-parameter` warnings in tests. NFC.

Open Quuxplusone opened this issue 3 years ago • 0 comments

Note that or_else::[extensions.or_else] still has an unused variable:

auto failptr = [](eptr e) { return tl::expected<int,eptr>(tl::unexpect, std::move(e));};

but I didn't remove it because it looks like it probably indicates some missing test coverage.

Quuxplusone avatar Jan 02 '22 18:01 Quuxplusone