sl@0: // Copyright Douglas Gregor 2004. sl@0: // Copyright 2005 Peter Dimov sl@0: sl@0: // Use, modification and distribution is subject to sl@0: // the Boost Software License, Version 1.0. sl@0: // (See accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // For more information, see http://www.boost.org sl@0: #ifndef BOOST_FUNCTION_EQUAL_HPP sl@0: #define BOOST_FUNCTION_EQUAL_HPP sl@0: sl@0: namespace boost { sl@0: sl@0: template sl@0: bool function_equal_impl(const F& f, const G& g, long) sl@0: { return f == g; } sl@0: sl@0: // function_equal_impl needs to be unqualified to pick sl@0: // user overloads on two-phase compilers sl@0: sl@0: template sl@0: bool function_equal(const F& f, const G& g) sl@0: { return function_equal_impl(f, g, 0); } sl@0: sl@0: } // end namespace boost sl@0: sl@0: #endif // BOOST_FUNCTION_EQUAL_HPP