aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2002-02-20 17:18:00 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2002-02-20 17:18:00 +0000
commitbe6efd9f31fe5baef933a79e6f0859c1e8163c3c (patch)
tree729b072d2f8f02f484755103b73fa8a4c979fad2
parent420e7dfad9f58f508c1bc9fef2d083236a43ad85 (diff)
downloadgcc-be6efd9f31fe5baef933a79e6f0859c1e8163c3c.zip
gcc-be6efd9f31fe5baef933a79e6f0859c1e8163c3c.tar.gz
gcc-be6efd9f31fe5baef933a79e6f0859c1e8163c3c.tar.bz2
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. From-SVN: r49900
-rw-r--r--libstdc++-v3/ChangeLog6
-rw-r--r--libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h7
-rw-r--r--libstdc++-v3/config/os/mingw32/bits/ctype_noninline.h4
3 files changed, 11 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index e006bfc..c024609 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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.
diff --git a/libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h b/libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h
index e84468c..0ec0f84 100644
--- a/libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h
+++ b/libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h
@@ -37,15 +37,14 @@
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)
diff --git a/libstdc++-v3/config/os/mingw32/bits/ctype_noninline.h b/libstdc++-v3/config/os/mingw32/bits/ctype_noninline.h
index 11a7843..998547c 100644
--- a/libstdc++-v3/config/os/mingw32/bits/ctype_noninline.h
+++ b/libstdc++-v3/config/os/mingw32/bits/ctype_noninline.h
@@ -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())