1
0
forked from boostorg/bind

Another VC 7 fix.

[SVN r22429]
This commit is contained in:
Peter Dimov
2004-03-04 14:05:50 +00:00
parent 21f1171900
commit 6fbbcd0d3c

View File

@@ -117,6 +117,11 @@ template<class F> inline F & unwrap(F & f, long)
return f;
}
template<class F> inline F * unwrap(F * f, int)
{
return f;
}
template<class F> inline F & unwrap(reference_wrapper<F> & f, int)
{
return f;