> I'm not positive, but it seems (roughly) like a vector push_back() operation > causes the d'tor to be called after the first element is stored. To me, this > seems to say that the push_back() operation copies the existing stored > element[s] to a new location (resizing the container) and destroys the old > copy of the object stored in the vector. I'm looking into this in > Stroustrup, but if anyone has any insights to share on this I'd be > interested to hear them. > > Jon
Looks like indeed that is the case, though where possible reserve() may help me out. Jon _______________________________________________ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel
