Skip to content
Snippets Groups Projects
Commit 34a7c41d authored by paolo's avatar paolo
Browse files

2005-01-01 Paolo Carlini <pcarlini@suse.de>

	* testsuite/27_io/basic_istream/extractors_character/char/1.cc: Fix,
	null-terminate array1 at the outset.
	* testsuite/27_io/basic_istream/extractors_character/wchar_t/1.cc:
	Likewise.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92789 138bc75d-0d04-0410-961f-82ee72b054a4
parent bfc80611
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
This diff is collapsed.
// 1999-07-26 bkoz // 1999-07-26 bkoz
// Copyright (C) 1999, 2003 Free Software Foundation // Copyright (C) 1999, 2003, 2005 Free Software Foundation
// //
// This file is part of the GNU ISO C++ Library. This library is free // 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 // software; you can redistribute it and/or modify it under the
...@@ -41,8 +41,9 @@ void test01() ...@@ -41,8 +41,9 @@ void test01()
// template<_CharT, _Traits> // template<_CharT, _Traits>
// basic_istream& operator>>(istream&, _CharT*) // basic_istream& operator>>(istream&, _CharT*)
int n = 20; const int n = 20;
char array1[n]; char array1[n];
array1[0] = '\0';
typedef std::ios::traits_type ctraits_type; typedef std::ios::traits_type ctraits_type;
ctraits_type::int_type i1, i2; ctraits_type::int_type i1, i2;
......
// Copyright (C) 2004 Free Software Foundation // Copyright (C) 2004, 2005 Free Software Foundation
// //
// This file is part of the GNU ISO C++ Library. This library is free // 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 // software; you can redistribute it and/or modify it under the
...@@ -39,8 +39,9 @@ void test01() ...@@ -39,8 +39,9 @@ void test01()
// template<_CharT, _Traits> // template<_CharT, _Traits>
// basic_istream& operator>>(istream&, _CharT*) // basic_istream& operator>>(istream&, _CharT*)
int n = 20; const int n = 20;
wchar_t array1[n]; wchar_t array1[n];
array1[0] = L'\0';
typedef std::wios::traits_type ctraits_type; typedef std::wios::traits_type ctraits_type;
ctraits_type::int_type i1, i2; ctraits_type::int_type i1, i2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment