You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/09/19 19:05:28 UTC

svn commit: r577379 - /incubator/stdcxx/trunk/include/loc/_messages.cc

Author: sebor
Date: Wed Sep 19 10:05:26 2007
New Revision: 577379

URL: http://svn.apache.org/viewvc?rev=577379&view=rev
Log:
2007-09-19  Martin Sebor  <se...@roguewave.com>

	* _messages.cc (do_close): Qualified argument type to work around
	a Sun C++ 5.8 (and prior) bug.

Modified:
    incubator/stdcxx/trunk/include/loc/_messages.cc

Modified: incubator/stdcxx/trunk/include/loc/_messages.cc
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/loc/_messages.cc?rev=577379&r1=577378&r2=577379&view=diff
==============================================================================
--- incubator/stdcxx/trunk/include/loc/_messages.cc (original)
+++ incubator/stdcxx/trunk/include/loc/_messages.cc Wed Sep 19 10:05:26 2007
@@ -37,7 +37,7 @@
 
 
 template <class _CharT>
-_TYPENAME messages<_CharT>::catalog
+messages_base::catalog
 messages<_CharT>::
 do_open (const string& __fun, const locale&__loc) const
 {
@@ -48,7 +48,7 @@
 template <class _CharT>
 void
 messages<_CharT>::
-do_close (catalog __cat) const
+do_close (messages_base::catalog __cat) const
 {
     _RW::__rw_cat_close (__cat);
 }