On 21 Jun 1999, Steinar Bang wrote: > The native g++ <string> uses refcounting. The SGI STL <string> always > does a deep copy. I don't think refcounting actually helps much with strings -- you have to do a deep copy whenever the data is accessed anyway (even read: think 'string s="str",t; char &c=s[0];'). Tim. */