From ae8222768b43af2a2ef431094843104b806338a6 Mon Sep 17 00:00:00 2001 From: evoskuil Date: Thu, 29 Feb 2024 23:18:29 -0500 Subject: [PATCH] Comments. --- include/bitcoin/network/impl/async/enable_shared_from_base.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bitcoin/network/impl/async/enable_shared_from_base.ipp b/include/bitcoin/network/impl/async/enable_shared_from_base.ipp index 8816f5c2d..8ab481136 100644 --- a/include/bitcoin/network/impl/async/enable_shared_from_base.ipp +++ b/include/bitcoin/network/impl/async/enable_shared_from_base.ipp @@ -35,7 +35,7 @@ template > std::shared_ptr enable_shared_from_base:: shared_from_base() NOEXCEPT { - // Instance (not just type) must be upcastable to Derived. + // Instance must be downcastable to Derived. return std::static_pointer_cast(this->shared_from_this()); }