From 5682111fadfe89f04d9e72aba70cb6d51057cdd9 Mon Sep 17 00:00:00 2001 From: Josh Marshall Date: Mon, 29 Apr 2019 13:24:59 -0400 Subject: [PATCH] Whitespace --- include/boost/function/function_base.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index 7c70c70..8067b64 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -401,9 +401,9 @@ namespace boost { out_buffer.members.type.const_qualified = false; out_buffer.members.type.volatile_qualified = false; return; + } else { + manager(in_buffer, out_buffer, op, tag_type()); } - manager(in_buffer, out_buffer, op, tag_type()); - return; } }; @@ -507,11 +507,11 @@ namespace boost { functor_manager_operation_type op) { typedef typename get_function_tag::type tag_type; - if(op == get_functor_type_tag){ + if (op == get_functor_type_tag) { 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; - }else{ + } else { manager(in_buffer, out_buffer, op, tag_type()); } }