I am attempting to print out all of the elements in each vector from a multiset of vectors. The build is failing but the error is occurring somewhere in a header file, I'm afraid I don't really understand the error codes at all. Any help would be greatly appreciated! Here is the error:
error: invalid conversion from 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >* const' to 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*'
And here is the code causing the problems.
multiset<vector < string > > setOfRules;
vector<string> testing,testing2;
testing.push_back("bar");
testing.push_back("foo");
testing2.push_back("foo2");
testing2.push_back("bar2");
setOfRules.insert(testing);
setOfRules.insert(testing2);
for (multiset< vector <string > >::iterator myIterator = setOfRules.begin();
myIterator!=setOfRules.end();
++myIterator)
{
for (vector< string >::iterator myOtherIterator = ( *myIterator ).begin();
myOtherIterator != ( *myIterator ).end();
++myOtherIterator)
{
cout << *myOtherIterator << " " ;
}
cout << endl;
}
testingandtesting2tosetOfRules. – E_net4 Sep 10 '12 at 20:04setOfRulesis empty in this code. – japreiss Sep 10 '12 at 20:06multisetrequires you use aconst_iterator. Otherwise, you could attempt to change the 'key' of the set during iteration, which would break the ordering in the set. – Grim Fandango Sep 10 '12 at 20:07