I have the following code:
string const& operator[] (size_t index) const { return elems[index]; }
should it not be:
const string&
?
I have the following code:
string const& operator[] (size_t index) const { return elems[index]; }
should it not be:
const string&
?