So I have a program that looks something like this:
const char *Argv[] = {"stuff", "stuff1", "stuff3"};
bool pass = xxxxx::yyyyy(Argv.begin(), Argv.end(), Tri);
I think this is illegal because const char *
is not a user-defined type. However, I am not sure how to fix this. Would I need to change the first line or the second? Or both?