Commit de5e4138 by Paolo Carlini Committed by Paolo Carlini

stl_tempbuf.h (return_temporary_buffer(_Tp*)): Inline.

2007-05-13  Paolo Carlini  <pcarlini@suse.de>

	* include/bits/stl_tempbuf.h (return_temporary_buffer(_Tp*)): Inline.

From-SVN: r124654
parent cbc862b2
2007-05-13 Paolo Carlini <pcarlini@suse.de> 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. * include/tr1/type_traitsfwd.h: Fix include guard typo.
2007-05-11 Paolo Carlini <pcarlini@suse.de> 2007-05-11 Paolo Carlini <pcarlini@suse.de>
......
...@@ -124,9 +124,9 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -124,9 +124,9 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* Frees the memory pointed to by p. * Frees the memory pointed to by p.
*/ */
template<typename _Tp> template<typename _Tp>
void inline void
return_temporary_buffer(_Tp* __p) return_temporary_buffer(_Tp* __p)
{ ::operator delete(__p, nothrow); } { ::operator delete(__p, std::nothrow); }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment