forked from boostorg/function
bind_t now implements function_equal instead of operator==
[SVN r27630]
This commit is contained in:
@ -1,6 +1,9 @@
|
|||||||
// Copyright Douglas Gregor 2004. Use, modification and
|
// Copyright Douglas Gregor 2004.
|
||||||
// distribution is subject to the Boost Software License, Version
|
// Copyright 2005 Peter Dimov
|
||||||
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
||||||
|
// Use, modification and distribution is subject to
|
||||||
|
// the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// http://www.boost.org/LICENSE_1_0.txt)
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
@ -9,15 +12,16 @@
|
|||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
|
|
||||||
namespace detail {
|
template<typename F, typename G>
|
||||||
template<typename F, typename G>
|
bool function_equal_impl(const F& f, const G& g, long)
|
||||||
bool function_equal_impl(const F& f, const G& g, long)
|
{ return f == g; }
|
||||||
{ return f == g; }
|
|
||||||
} // end namespace boost::function
|
// function_equal_impl needs to be unqualified to pick
|
||||||
|
// user overloads on two-phase compilers
|
||||||
|
|
||||||
template<typename F, typename G>
|
template<typename F, typename G>
|
||||||
bool function_equal(const F& f, const G& g)
|
bool function_equal(const F& f, const G& g)
|
||||||
{ return ::boost::detail::function_equal_impl(f, g, 0); }
|
{ return function_equal_impl(f, g, 0); }
|
||||||
|
|
||||||
} // end namespace boost
|
} // end namespace boost
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user