2003-10-23 Phil Edwards <phil@codesourcery.com>
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 23 Oct 2003 05:33:49 +0000 (05:33 +0000)
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 23 Oct 2003 05:33:49 +0000 (05:33 +0000)
* config/os/vxworks/ctype_noninline.h:  Adjust ctor to match
2003-10-21 change.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72835 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/vxworks/ctype_noninline.h

index 218ce7a..029cbf4 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-23  Phil Edwards  <phil@codesourcery.com>
+
+       * config/os/vxworks/ctype_noninline.h:  Adjust ctor to match
+       2003-10-21 change.
+
 2003-10-22  Paolo Carlini  <pcarlini@suse.de>
 
        * include/bits/locale_facets.tcc (__int_to_char): Remove
index adb7cfd..4f4e92b 100644 (file)
 
   ctype<char>::ctype(__c_locale, const mask* __table, bool __del, 
                     size_t __refs) 
-  : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
+  : facet(__refs), _M_del(__table != 0 && __del), 
   _M_toupper(NULL), _M_tolower(NULL), 
   _M_table(__table ? __table : classic_table()) 
   { }
 
   ctype<char>::ctype(const mask* __table, bool __del, size_t __refs) 
-  : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
+  : facet(__refs), _M_del(__table != 0 && __del), 
   _M_toupper(NULL), _M_tolower(NULL), 
   _M_table(__table ? __table : classic_table())
   { }