ctype_noninline.h: Adjust ctor to match 2003-10-21 change.
authorPhil Edwards <phil@codesourcery.com>
Thu, 23 Oct 2003 05:33:49 +0000 (05:33 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Thu, 23 Oct 2003 05:33:49 +0000 (05:33 +0000)
2003-10-23  Phil Edwards  <phil@codesourcery.com>

* config/os/vxworks/ctype_noninline.h:  Adjust ctor to match
2003-10-21 change.

From-SVN: r72835

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

index 218ce7a9047c3078e13eb6eadf82c195140e3a89..029cbf4d946a110119aadc1b8233c9d7fe6c3dfb 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 adb7cfdeb27200a5cee89647c80b7b46b14fb862..4f4e92b16932626d5176c7209a17242beb551618 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())
   { }