From 67180b07d384ab6ab5b4a57d2a45689943b97818 Mon Sep 17 00:00:00 2001 From: Sergey Chebotarev <50007587+d7d1cd@users.noreply.github.com> Date: Tue, 14 Oct 2025 16:12:02 +0000 Subject: [PATCH] Remove static --- include/boost/mpl/aux_/ptr_to_ref.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpl/aux_/ptr_to_ref.hpp b/include/boost/mpl/aux_/ptr_to_ref.hpp index 8517b3029..3cd02bea7 100644 --- a/include/boost/mpl/aux_/ptr_to_ref.hpp +++ b/include/boost/mpl/aux_/ptr_to_ref.hpp @@ -39,7 +39,7 @@ namespace boost { namespace mpl { namespace aux { -template< typename T > static T const& ptr_to_ref(T*); +template< typename T > T const& ptr_to_ref(T*); }}}