In my .h file, I have:
struct tup{ tup() : token{{-1,"a","b","c","d","e","f"}, {-1,"a","b","c","d","e","f"}, ... {-1,"a","b","c","d","e","f"}} {} struct { int pos; std::string nj, ny, pa, ri, ct, fl; } token[100]; Where the "..." refers to 97 more lines of the same type of code. Is there a more elegant way to set default values for my token?
97 more linesthey are already showing 3.