From 6fbbcd0d3ce6859a61f48ad451e6feefaaa36c84 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 4 Mar 2004 14:05:50 +0000 Subject: [PATCH] Another VC 7 fix. [SVN r22429] --- include/boost/bind.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/bind.hpp b/include/boost/bind.hpp index 8ac10e3..f3fb5ee 100644 --- a/include/boost/bind.hpp +++ b/include/boost/bind.hpp @@ -117,6 +117,11 @@ template inline F & unwrap(F & f, long) return f; } +template inline F * unwrap(F * f, int) +{ + return f; +} + template inline F & unwrap(reference_wrapper & f, int) { return f;