[uClibc-cvs] svn commit: trunk/uClibc++/include

gkajmowi at uclibc.org gkajmowi at uclibc.org
Tue Jul 12 22:21:55 UTC 2005


Author: gkajmowi
Date: 2005-07-12 16:21:54 -0600 (Tue, 12 Jul 2005)
New Revision: 10801

Log:
Specify parent class for functino call

Modified:
   trunk/uClibc++/include/ostream


Changeset:
Modified: trunk/uClibc++/include/ostream
===================================================================
--- trunk/uClibc++/include/ostream	2005-07-12 22:14:14 UTC (rev 10800)
+++ trunk/uClibc++/include/ostream	2005-07-12 22:21:54 UTC (rev 10801)
@@ -233,7 +233,7 @@
 
 		typename traits::int_type c;
 
-		while(good() && (c = sb->sbumpc()) != traits::eof() ){
+		while(basic_ios<charT,traits>::good() && (c = sb->sbumpc()) != traits::eof() ){
 			put(c);
 		}
 




More information about the uClibc-cvs mailing list