Author: sebor
Date: Sat Aug 16 12:20:13 2008
New Revision: 686543
URL: http://svn.apache.org/viewvc?rev=686543&view=rev
Log:
2008-08-16 Martin Sebor <[EMAIL PROTECTED]>
* include/rw/_allocator.h (allocator::destroy): Fixed a typo
inadvertently introduced in rev 686537.
Modified:
stdcxx/branches/4.2.x/include/rw/_allocator.h
Modified: stdcxx/branches/4.2.x/include/rw/_allocator.h
URL:
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/include/rw/_allocator.h?rev=686543&r1=686542&r2=686543&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/include/rw/_allocator.h (original)
+++ stdcxx/branches/4.2.x/include/rw/_allocator.h Sat Aug 16 12:20:13 2008
@@ -174,7 +174,7 @@
// declared as nothrow since the behavior of programs that
// instantiate library templates on types whose dtors throw
// is undefined
- void destroy (pointer __p) _RWSTD_ATTRIBUTE_NOTHROW (()) {
+ void destroy (pointer __p) _RWSTD_ATTRIBUTE_NOTHROW {
_RWSTD_ASSERT (0 != __p);
__p->~_TypeT ();
}