I'm having trouble with some code, where I need to pass a pointer through multiple layers of functions. The pointer can be null so I've an overload for the final function for the case of nullptr. Conceptual I've something like this:
void test_ptr(std::nullptr_t)
{
std::cout << "nullptr" << std::endl;
}
void test_ptr(double *d)
{
std::cout << *d << std::endl;
}
void test(double *d)
{
test_ptr(d);
}
int main()
{
test(nullptr);
}
For me, the ideal behaviour would be, if test
calls the first version of test_ptr
, but this isn't the case. Is there any chance to manipulate test
so that it calls the "right" version?
Why don't you check for
nullptr
in the beginning of thedouble*
function?In your case, you do not need to overload the function for
nullptr_t
. The use ofstd::nullptr_t
is explained in this question: What are the uses of the type `std::nullptr_t`?So this means for you: If you had another
test_ptr
function, that accepts a pointer type, then you would need the overloaded one withstd::nullptr_t
. But with just onetest_ptr
function, it is not necessary.