I have seen this code
void path(
const char * p);
» more...
void path(
const std::string & p);
» more...
Can I do the following modification, basically reversing the * and &.
void path(
const char & p);
» more...
void path(
const std::string * p);
» more...