NULL in C++ is just an integer constant. The pointer conversion is implicit in appropriate contexts, but this isn’t one. You need to cast explicitly:
std::find(dependent_events.begin(), dependent_events.end(), static_cast<P>(0));
Where P is the appropriate type of the pointers in the collection. Alternatively, Eddie has correctly pointed out the C++11 solution which should work in modern compilers (if C++11 has been enabled).
The reason that plain NULL doesn’t work is the following: C++ forbids implicit conversion of an integer to a pointer. There is one exception only, a literal value 0 is treated as a null pointer in initialisations and assignments to pointers (literal 0 acts as the “null pointer constant”, §4.10), and NULL is just 0 (§18.1.4).
But when used in a template instantiation (such as in the above call to find), C++ needs to infer a template type for each of its parameters and the type inferred for 0 is always the same: int. So find is called with an int argument (which, inside the function, is no longer a literal) and as mentioned above, there is no implicit conversion between int and a pointer.
dependent_events? – Platinum Azure Sep 8 '11 at 19:10nullptris of typenullptr_t, and is implicitly convertible to any pointer type, but it is a unique type, notvoid*. – jalf Sep 8 '11 at 19:15void*– Flexo♦ Sep 8 '11 at 19:18