OSDN Git Service

2003-04-24 Richard Sandiford <rsandifo@redhat.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Apr 2003 02:52:57 +0000 (02:52 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Apr 2003 02:52:57 +0000 (02:52 +0000)
* src/localename.cc (__gnu_cxx::facet_vec): Correct types.

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

libstdc++-v3/ChangeLog
libstdc++-v3/src/localename.cc

index 170e188..7c5474b 100644 (file)
@@ -1,3 +1,7 @@
+2003-04-24  Richard Sandiford  <rsandifo@redhat.com>
+
+       * src/localename.cc (__gnu_cxx::facet_vec): Correct types.
+
 2003-04-24  Phil Edwards  <pme@gcc.gnu.org>
 
        * docs/html/17_intro/howto.html:  Update some links.
index c9528d0..abaa50c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
@@ -35,7 +35,7 @@ namespace __gnu_cxx
   using namespace std;
 
   // Defined in globals.cc.
-  extern locale::facet** facet_vec;
+  extern locale::facet* facet_vec[_GLIBCPP_NUM_FACETS];
   extern char* facet_name[6 + _GLIBCPP_NUM_CATEGORIES];
 
   extern std::ctype<char>                      ctype_c;