From 1f518125894e221fd8f5c7611aa378d182eaaec5 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Thu, 12 Jan 2006 15:31:46 +0000 Subject: [PATCH] EDG 238 compatibility (and potentially other compilers) [SVN r32294] --- include/boost/function/function_base.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index c16bfaa..b852f6b 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -381,7 +381,8 @@ namespace boost { return; default: - return manager(in_buffer, out_buffer, op, tag_type()); + manager(in_buffer, out_buffer, op, tag_type()); + return; } } };