From be6efd9f31fe5baef933a79e6f0859c1e8163c3c Mon Sep 17 00:00:00 2001 From: Danny Smith Date: Wed, 20 Feb 2002 17:18:00 +0000 Subject: [PATCH] 2002-02-20 Danny Smith * config/os/mingw32/bits/ctype_noninline.h (ctype::ctype): Remove default args from parm list. * config/os/djgpp/bits/ctype_noninline.h: Same. From-SVN: r49900 --- libstdc++-v3/ChangeLog | 6 ++++++ libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h | 7 +++---- libstdc++-v3/config/os/mingw32/bits/ctype_noninline.h | 4 ++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e006bfca7d1..c024609de8a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2002-02-20 Danny Smith + + * config/os/mingw32/bits/ctype_noninline.h + (ctype::ctype): Remove default args from parm list. + * config/os/djgpp/bits/ctype_noninline.h: Same. + 2002-02-19 Benjamin Kosnik * 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 e84468c66ae..0ec0f84aafa 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::classic_table() throw() { return 0; } - ctype::ctype(__c_locale, const mask* __table = 0, bool __del = false, - size_t __refs = 0) + ctype::ctype(__c_locale, const mask* __table, bool __del, + size_t __refs) : __ctype_abstract_base(__refs), _M_del(__table != 0 && __del), _M_toupper(__dj_ctype_toupper), _M_tolower(__dj_ctype_tolower), _M_table(__table ? __table : __dj_ctype_flags) { } - ctype::ctype(const mask* __table = 0, bool __del = false, - size_t __refs = 0) + ctype::ctype(const mask* __table, bool __del, size_t __refs) : __ctype_abstract_base(__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 11a78436664..998547c9186 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::classic_table() throw() { return _ctype + 1; } - ctype::ctype(__c_locale, const mask* __table = 0, bool __del = false, - size_t __refs = 0) + ctype::ctype(__c_locale, const mask* __table, bool __del, + size_t __refs) : __ctype_abstract_base(__refs), _M_del(__table != 0 && __del), _M_toupper(NULL), _M_tolower(NULL), _M_table(__table ? __table : classic_table()) -- 2.30.2