From 90caab61f2c9631ee5a46cb2cd8dd8ace006c822 Mon Sep 17 00:00:00 2001 From: Ben Magistro Date: Tue, 29 Jul 2025 01:33:35 +0000 Subject: [PATCH] Remove redundant parenthesis on typedef Signed-off-by: Ben Magistro --- include/boost/bind/mem_fn.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/bind/mem_fn.hpp b/include/boost/bind/mem_fn.hpp index 5cfbb99e..e417fa94 100644 --- a/include/boost/bind/mem_fn.hpp +++ b/include/boost/bind/mem_fn.hpp @@ -179,7 +179,7 @@ template class dm private: - typedef R (T::*Pm); + typedef R T::*Pm; Pm pm_; public: