char_traits.h (struct _Char_traits_match): Remove, unused.
authorPaolo Carlini <pcarlini@suse.de>
Sat, 21 Aug 2004 14:40:53 +0000 (14:40 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Sat, 21 Aug 2004 14:40:53 +0000 (14:40 +0000)
2004-08-21  Paolo Carlini  <pcarlini@suse.de>

* include/bits/char_traits.h (struct _Char_traits_match): Remove,
unused.

From-SVN: r86364

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/char_traits.h

index 40ef639b07cd76350e8c479c1f71bc8e39b966d6..ed43a1e073a2a31241c5c14141250c50a583172c 100644 (file)
@@ -1,3 +1,8 @@
+2004-08-21  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/char_traits.h (struct _Char_traits_match): Remove,
+       unused.
+
 2004-08-21  Paolo Carlini  <pcarlini@suse.de>
 
        * testsuite/22_locale/money_put/put/wchar_t/1.cc: Use proper
index 323fdfb47c0909af398da04a50a280bda1aba39c..cd5c672dd19bba834638de7f92968da72627ed21 100644 (file)
@@ -1,6 +1,6 @@
 // Character Traits for use by standard string and iostream -*- C++ -*-
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
@@ -362,15 +362,6 @@ namespace std
   };
 #endif //_GLIBCXX_USE_WCHAR_T
 
-  template<typename _CharT, typename _Traits>
-    struct _Char_traits_match
-    {
-      _CharT _M_c;
-      _Char_traits_match(_CharT const& __c) : _M_c(__c) { }
-
-      bool
-      operator()(_CharT const& __a) { return _Traits::eq(_M_c, __a); }
-    };
 } // namespace std
 
 #endif