2002-02-20 Danny Smith <dannysmith@users.sourceforge.net>
authorDanny Smith <dannysmith@users.sourceforge.net>
Wed, 20 Feb 2002 17:18:00 +0000 (17:18 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Wed, 20 Feb 2002 17:18:00 +0000 (17:18 +0000)
* config/os/mingw32/bits/ctype_noninline.h
(ctype<char>::ctype): Remove default args from parm list.
* config/os/djgpp/bits/ctype_noninline.h: Same.

From-SVN: r49900

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h
libstdc++-v3/config/os/mingw32/bits/ctype_noninline.h

index e006bfca7d1c3946b25275d4e39651f827da4899..c024609de8a510f0aa73c3f6cd746d529d8085aa 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-20  Danny Smith  <dannysmith@users.sourceforge.net>
+
+       * config/os/mingw32/bits/ctype_noninline.h
+       (ctype<char>::ctype): Remove default args from parm list.
+       * config/os/djgpp/bits/ctype_noninline.h: Same. 
+
 2002-02-19  Benjamin Kosnik  <bkoz@redhat.com>
 
        * include/std/std_iomanip.h: Inline, tweaks.
index e84468c66aeacb5763dd4c72b5e5060aa4aa3b35..0ec0f84aafa60b889453ff5e876b54513c71c437 100644 (file)
   ctype<char>::classic_table() throw()
   { return 0; }
 
-  ctype<char>::ctype(__c_locale, const mask* __table = 0, bool __del = false
-                    size_t __refs = 0
+  ctype<char>::ctype(__c_locale, const mask* __table, bool __del
+                    size_t __refs) 
   : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
   _M_toupper(__dj_ctype_toupper), _M_tolower(__dj_ctype_tolower),
   _M_table(__table ? __table : __dj_ctype_flags)  
   { }
 
-  ctype<char>::ctype(const mask* __table = 0, bool __del = false, 
-                    size_t __refs = 0) 
+  ctype<char>::ctype(const mask* __table, bool __del, size_t __refs) 
   : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
   _M_toupper(__dj_ctype_toupper), _M_tolower(__dj_ctype_tolower),
   _M_table(__table ? __table : __dj_ctype_flags)  
index 11a78436664e57f58b8102e0e53887fc1f126d90..998547c91863542dea98a2734fff3c542f1feef2 100644 (file)
@@ -41,8 +41,8 @@
   ctype<char>::classic_table() throw()
   { return _ctype + 1; }  
 
-  ctype<char>::ctype(__c_locale, const mask* __table = 0, bool __del = false
-                    size_t __refs = 0
+  ctype<char>::ctype(__c_locale, const mask* __table, bool __del
+                    size_t __refs) 
   : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
   _M_toupper(NULL), _M_tolower(NULL),
   _M_table(__table ? __table : classic_table())