| 693 | template<typename Functor> |
| 694 | BOOST_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor, bool) |
| 695 | operator!=(Functor g) const |
| 696 | { |
| 697 | if (const Functor* fp = target<Functor>()) |
| 698 | return !function_equal(*fp, g); |
| 699 | else return true; |
| 700 | } |
| 701 | #endif |
| 702 | |
| 703 | public: // should be protected, but GCC 2.95.3 will fail to allow access |
nothing calls this directly
no test coverage detected