Author: faridz
Date: Fri Nov 23 05:51:51 2007
New Revision: 597665
URL: http://svn.apache.org/viewvc?rev=597665&view=rev
Log:
2007-11-23 Farid Zaripov <[EMAIL PROTECTED]>
STDCXX-307
* streambuf (imbue): Code storing the locale moved from here...
(pubimbue): ... to here.
Modified:
incubator/stdcxx/branches/4.2.x/include/streambuf
Modified: incubator/stdcxx/branches/4.2.x/include/streambuf
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/include/streambuf?rev=597665&r1=597664&r2=597665&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/include/streambuf (original)
+++ incubator/stdcxx/branches/4.2.x/include/streambuf Fri Nov 23 05:51:51 2007
@@ -248,7 +248,7 @@
// 27.5.2.4.1, p1
virtual void imbue (const locale &__loc) {
- _C_locale = __loc;
+ // do nothing
}
// 27.5.2.4.2, p1
@@ -496,6 +496,7 @@
const locale __tmp (getloc ());
imbue (__loc);
+ _C_locale = __loc;
return __tmp;
}