Commit b656faa8 by Paolo Carlini Committed by Paolo Carlini

re PR libstdc++/13630 (Wrong type for locale::category)

2004-01-10  Paolo Carlini  <pcarlini@suse.de>

	PR libstdc++/13630
	* include/bits/locale_classes.h (class locale): Fix category typedef.
	* testsuite/22_locale/locale/13630.cc: Add.

From-SVN: r75635
parent fbfb16e2
2004-01-10 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/13630
* include/bits/locale_classes.h (class locale): Fix category
typedef.
* testsuite/22_locale/locale/13630.cc: Add.
2004-01-10 Giovanni Bajo <giovannibajo@gcc.gnu.org>
* include/bits/locale_facets.h: Make a name really dependent. This
......
......@@ -69,7 +69,7 @@ namespace std
public:
// Types:
/// Definition of locale::category.
typedef unsigned int category;
typedef int category;
// Forward decls and friends:
class facet;
......
// Copyright (C) 2004 Free Software Foundation
//
// 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
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING. If not, write to the Free
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
// 22.1.1 class locale [lib.locale]
#include <locale>
#include <typeinfo>
#include <testsuite_hooks.h>
void test01()
{
using namespace std;
bool test __attribute__((unused)) = true;
VERIFY( typeid(locale::category) == typeid(int) );
}
int main()
{
test01();
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment