<div class="gmail_quote">2011/7/22 Nathan Lewis <span dir="ltr"><<a href="mailto:nathanlewissubscription@gmail.com">nathanlewissubscription@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"> <div class="im"> � char_string_vector_iterator it = mymap->char_string_vector_vector_.begin();<br> � while (it != mymap->char_string_vector_vector_.end())<br> � {<br> </div> � � �// error is on the line below<br> <div class="im"> � � �cout << "Inserted String is: " << it << endl;<br></div></blockquote><div><br>cout << "Inserted String is: " << *it << endl; <br><br>You need the dereference not the iterator itself.<br> <br><br>HTH</div></div><br>