Fixed some compiler errors.

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

View File

@ -4,6 +4,7 @@
#if !defined(MIJIN_ASYNC_SIGNAL_HPP_INCLUDED)
#define MIJIN_ASYNC_SIGNAL_HPP_INCLUDED 1
#include <algorithm>
#include <cstdint>
#include <functional>
#include <memory>

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);
}