| 684 | template<typename Functor> |
| 685 | BOOST_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor, bool) |
| 686 | operator==(Functor g) const |
| 687 | { |
| 688 | if (const Functor* fp = target<Functor>()) |
| 689 | return function_equal(*fp, g); |
| 690 | else return false; |
| 691 | } |
| 692 | |
| 693 | template<typename Functor> |
| 694 | BOOST_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor, bool) |
nothing calls this directly
no test coverage detected