std_iosfwd.h: Don't guard typedefs with _GLIBCPP_USE_WCHAR_T
authorBenjamin Kosnik <bkoz@redhat.com>
Sat, 16 Feb 2002 02:41:10 +0000 (02:41 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Sat, 16 Feb 2002 02:41:10 +0000 (02:41 +0000)
2002-02-15  Benjamin Kosnik  <bkoz@redhat.com>

* include/std/std_iosfwd.h: Don't guard typedefs with
_GLIBCPP_USE_WCHAR_T
* include/bits/stringfwd.h: Same.

From-SVN: r49800

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stringfwd.h
libstdc++-v3/include/std/std_iosfwd.h

index 511d3131cc5b4f7271a47ce53610ec838c2c1440..d52cefed50bbb38178c048e129d9bf6168539b35 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-15  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/std/std_iosfwd.h: Don't guard typedefs with
+       _GLIBCPP_USE_WCHAR_T
+       * include/bits/stringfwd.h: Same.
+
 2002-02-15  Benjamin Kosnik  <bkoz@redhat.com>
 
        * src/locale.cc (moneypunct_byname): Remove definitions.
index 5197f9703fdb456dd03265744f5d0dd479c09235..b7418a67a7ea1741933591099e600f1832a4b08d 100644 (file)
@@ -1,6 +1,6 @@
 // String support -*- C++ -*-
 
-// Copyright (C) 2001 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -61,13 +61,7 @@ namespace std
     class basic_string;
 
   typedef basic_string<char>    string;
-#ifdef _GLIBCPP_USE_WCHAR_T
   typedef basic_string<wchar_t> wstring;
-#endif
 } // namespace std
 
 #endif // _CPP_BITS_STRINGFWD_H
-
-// Local Variables:
-// mode:c++
-// End:
index 797f4936dc8a789ed3e8e0120116721b78f81451..f76ca7cad706bd7ce33c8451437cb8c49ec2f136 100644 (file)
@@ -116,7 +116,6 @@ namespace std
   typedef basic_ofstream<char>                 ofstream;
   typedef basic_fstream<char>          fstream;
 
-#ifdef _GLIBCPP_USE_WCHAR_T
   typedef basic_ios<wchar_t>           wios;
   typedef basic_streambuf<wchar_t>     wstreambuf;
   typedef basic_istream<wchar_t>       wistream;
@@ -130,7 +129,6 @@ namespace std
   typedef basic_ifstream<wchar_t>      wifstream;
   typedef basic_ofstream<wchar_t>      wofstream;
   typedef basic_fstream<wchar_t>       wfstream;
-#endif
 } // namespace std
 
 #endif