Is the verbosity really worth it when passing read only vector in function?
const vector<const string>&
I usually have
const vector<string>&
which is already verbose enough. Now I see some people use the first verbose version and I wonder is it worth it?