From eaf2151263cfd214e379a96d64ecb04aedc6d393 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 29 Apr 2019 02:47:09 +0300 Subject: [PATCH] Cosmetic cleanup --- include/boost/function/function_base.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index 6b1129b..d983ed5 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -400,10 +400,10 @@ namespace boost { out_buffer.members.type.type = &boost::typeindex::type_id().type_info(); out_buffer.members.type.const_qualified = false; out_buffer.members.type.volatile_qualified = false; - return; } - manager(in_buffer, out_buffer, op, tag_type()); - return; + else { + manager(in_buffer, out_buffer, op, tag_type()); + } } };