From e2056e7892ace2e919662793e076300ff3bc980f Mon Sep 17 00:00:00 2001 From: vipcxj Date: Wed, 28 Feb 2024 20:02:35 +0800 Subject: [PATCH] fix #10 --- include/asiochan/channel.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/asiochan/channel.hpp b/include/asiochan/channel.hpp index 4ffd88c..1af7547 100644 --- a/include/asiochan/channel.hpp +++ b/include/asiochan/channel.hpp @@ -55,6 +55,11 @@ namespace asiochan return *shared_state_; } + [[nodiscard]] auto shared_state() const noexcept -> const shared_state_type& + { + return *shared_state_; + } + [[nodiscard]] friend auto operator==( channel_base const& lhs, channel_base const& rhs) noexcept -> bool