I've a problem with this code:
#include
<iostream>#include
<vector>#include
<map>#include
<string>using
namespace std;
int
_tmain(int argc, _TCHAR* argv[]){
vector<string> vs;
vs.push_back(
"Hello");
vector<vector<string> > vvs;
vvs.push_back(vs);
map<string, vector<vector<string> > > m;
m[
"key"] = vvs; // error return 0;}
The compiler doesn't show errors, but when I execute it in debugging I see that m contains an error message.
Does somebody know where the problem
Thank you