Project

General

Profile

vector of string being redefined?

Added by Matt M about 5 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


Replies (1)

RE: vector of string being redefined? - Added by Roel Standaert about 5 years ago

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.

    (1-1/1)