Added by Matt M about 6 years ago
so i have a vector of vector of strings like so: std::vector<std::vector<std::string > > suburb_records;
however when i hover over the vector in my IDE it says something about: class std::__1::vector<Wt::Http::ParameterValues>
is wt redefining my vector in some way? because i cant create my vector correctly
ParameterValues is typedef'd as a std::vector<std::string>
. It's a bit odd of your IDE to then substitute that for every std::vector<std::string>
, though.