[v3] remove non-standard basic_filebuf members, fd, FILE filebufs

Benjamin Kosnik bkoz@redhat.com
Tue Apr 30 10:08:00 GMT 2002


Jason Merrill <jason@redhat.com> wrote:

> >>>>> "Benjamin" == Benjamin Kosnik <bkoz@redhat.com> writes:
> 
> > ! 	      // Allocate internal buffer.
> > ! 	      try { _M_buf = new char_type[_M_buf_size];
> > ! 	      catch(...) 
> > ! 		{
> > ! 		  delete [] _M_buf;
> > ! 		  __throw_exception_again;
> > ! 		}

should just be

_M_buf = new char_type[_M_buf_size];

similar bits are in localename.cc, I'll patch those as well.

About the rest of the patch though: what say you?

-benjamin



More information about the Libstdc++ mailing list