12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_FUNCTION_EQUAL_HPP
- #define BOOST_FUNCTION_EQUAL_HPP
- namespace boost {
- template<typename F, typename G>
- bool function_equal_impl(const F& f, const G& g, long)
- { return f == g; }
- template<typename F, typename G>
- bool function_equal(const F& f, const G& g)
- { return function_equal_impl(f, g, 0); }
- }
- #endif
|