2011/7/22 Nathan Lewis <nathanlewissubscription@gmail.com>
  char_string_vector_iterator it = mymap->char_string_vector_vector_.begin();
  while (it != mymap->char_string_vector_vector_.end())
  {
     // error is on the line below
     cout << "Inserted String is: " << it << endl;

cout << "Inserted String is: " << *it << endl;

You need the dereference not the iterator itself.


HTH