Author: sebor
Date: Thu Oct 18 15:40:10 2007
New Revision: 586162
URL: http://svn.apache.org/viewvc?rev=586162&view=rev
Log:
2007-10-18 Martin Sebor <[EMAIL PROTECTED]>
* string (__replace_aux): Made member function template public
as intended (but not actually done) in rev 586118 to get HP aCC
3 and 5 to compile the code again (and to restore the solution
implemented for STDCXX-271).
Modified:
incubator/stdcxx/branches/4.2.0/include/string
Modified: incubator/stdcxx/branches/4.2.0/include/string
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.0/include/string?rev=586162&r1=586161&r2=586162&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.0/include/string (original)
+++ incubator/stdcxx/branches/4.2.0/include/string Thu Oct 18 15:40:10 2007
@@ -511,13 +511,13 @@
#else
+public:
+
template <class _InputIter>
basic_string& __replace_aux (iterator __first1, iterator __last1,
_InputIter __first2, _InputIter __last2) {
return __rw_replace_aux (*this, __first1, __last1, __first2, __last2);
}
-
-public:
#endif // _RWSTD_NO_STRING_OUTLINED_MEMBER_TEMPLATES