2007-05-13 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_tempbuf.h (return_temporary_buffer(_Tp*)): Inline.
From-SVN: r124654
+2007-05-13 Paolo Carlini <pcarlini@suse.de>
+
+ * include/bits/stl_tempbuf.h (return_temporary_buffer(_Tp*)): Inline.
+
2007-05-13 Paolo Carlini <pcarlini@suse.de>
* include/tr1/type_traitsfwd.h: Fix include guard typo.
* Frees the memory pointed to by p.
*/
template<typename _Tp>
- void
+ inline void
return_temporary_buffer(_Tp* __p)
- { ::operator delete(__p, nothrow); }
+ { ::operator delete(__p, std::nothrow); }
/**