struct Foo {}; ... void * p = (Foo*)0; // OK void ** pp = (Foo**)0; // Invalid conversion
As far as I recall, a pointer to any non-pointer type can
A pointer can be implicitly cast to void * because void * is the generic pointer. However, void ** isn't the generic pointer to pointer.
void *
void **
C FAQ 4.9 explains why there is no generic pointer to pointer type in C, I think it applies to C++ as well.