Fixed some compiler errors.

This commit is contained in:
2024-05-17 20:29:46 +02:00
parent 80310f3c5c
commit 463f4ca19c
2 changed files with 2 additions and 1 deletions

View File

@@ -180,7 +180,7 @@ struct ZippingIterator
ZippingIterator& operator=(const ZippingIterator&) noexcept = default;
auto operator*() const noexcept
decltype(auto) operator*() const noexcept
{
return std::tie(*first, *second);
}