Commit 3b142084 by Jonathan Wakely Committed by Jonathan Wakely

shared_ptr_base.h (_Sp_counted_ptr::_M_dispose): Make nullptr_t specializations inline.

2010-06-05  Jonathan Wakely  <jwakely.gcc@gmail.com>

	* include/bits/shared_ptr_base.h (_Sp_counted_ptr::_M_dispose): Make
	nullptr_t specializations inline.

From-SVN: r160328
parent 0fc555fb
2010-06-05 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/bits/shared_ptr_base.h (_Sp_counted_ptr::_M_dispose): Make
nullptr_t specializations inline.
2010-06-05 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/xml/manual/status_cxx200x.xml: Update.
2010-06-05 Magnus Fromreide <magfr@lysator.liu.se>
......
......@@ -109,15 +109,15 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
};
template<>
void
inline void
_Sp_counted_ptr<nullptr_t, _S_single>::_M_dispose() { }
template<>
void
inline void
_Sp_counted_ptr<nullptr_t, _S_mutex>::_M_dispose() { }
template<>
void
inline void
_Sp_counted_ptr<nullptr_t, _S_atomic>::_M_dispose() { }
// Support for custom deleter and/or allocator
......
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