From d62193624e255b3171c577ed036574312c045fdc Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 21 Jul 2002 11:09:23 +0000 Subject: [PATCH] VC6/7 workaround [SVN r14552] --- include/boost/function/function_template.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/function/function_template.hpp b/include/boost/function/function_template.hpp index db15bb0..3a64705 100644 --- a/include/boost/function/function_template.hpp +++ b/include/boost/function/function_template.hpp @@ -339,9 +339,9 @@ namespace boost { } // Assignment from another BOOST_FUNCTION_FUNCTION - void set(const BOOST_FUNCTION_FUNCTION& f, - int deprecated = 0) + void set(const BOOST_FUNCTION_FUNCTION& f) { + int deprecated; if (&f == this) return;