I have an error I couldn't figure where it occues on the following:
I'm acutally using a map with vectors in it:
map<vector<string> , vector<string> > parameterMap;
because I need a few of them (how many is decided on runtime) I put them into a list (vector):
vector declaration on head of method:
vector<map<vector<string> , vector<string> > > listedParameterMap;
insertion of a map into the vector:
listedParameterMap.insert(listedParameterMap.end(), 1, parameterMap);
This procedure works fine on the first time. The second time (map is filled correctly) it down't work.
I noticed a thing: I give out the size of the map:
cout << "listedParameterMap " << listedParameterMap.size();
it shown size is 2 after the second time, the watch says it still 1.
It also shows me wired content:
Screenshot:

Last should contain something looking like First
The second map which is inserted is defently filled correctly.
Same for the vectors: part1_input and part2_output
Code:
for (unsigned int index = 0; index < part1_input.size(); index++) {
map<vector<string> , vector<string> > parameterMap;
parameterMap.insert
(pair<vector<string> , vector<string> > (part1_input[index], part2_output[index]));
listedParameterMap.insert(listedParameterMap.end(), 1, parameterMap);
cout << "listedParameterMap " << listedParameterMap.size();
}
I really would appreciate any ideas why this happens...
EDIT:
"Solution" was printing the stuff out. The watch-window isn't displaying the correct values. That means my Problem is caused somewhere else. But this here is anwsered. Thanks to anyone how tried to help me!
Last) it's not like it should be (similiar toFirst) – Beasly Jan 20 '11 at 12:52