Author: elemings
Date: Wed Jul 9 14:19:43 2008
New Revision: 675344
URL: http://svn.apache.org/viewvc?rev=675344&view=rev
Log:
2008-07-09 Eric Lemings <[EMAIL PROTECTED]>
STDCXX-958
* include/rw/_tuple.h (__rw_ignore::operator=): Simplify
defininition of operator.
Modified:
stdcxx/branches/4.3.x/include/rw/_tuple.h
Modified: stdcxx/branches/4.3.x/include/rw/_tuple.h
URL:
http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/include/rw/_tuple.h?rev=675344&r1=675343&r2=675344&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/include/rw/_tuple.h (original)
+++ stdcxx/branches/4.3.x/include/rw/_tuple.h Wed Jul 9 14:19:43 2008
@@ -177,10 +177,7 @@
struct __rw_ignore
{
template <class _TypeT>
- inline __rw_ignore const&
- operator= (const _TypeT& /*unused*/) const {
- return *this;
- }
+ void operator= (const _TypeT&) const {}
};