mirror of git://gcc.gnu.org/git/gcc.git
1.cc: Initialize vars.
2006-01-03 Paolo Carlini <pcarlini@suse.de> * testsuite/27_io/basic_stringstream/str/char/1.cc: Initialize vars. * testsuite/27_io/basic_stringstream/str/wchar_t/1.cc: Likewise. * testsuite/27_io/basic_istringstream/str/char/1.cc: Likewise, tidy. * testsuite/27_io/basic_istringstream/str/wchar_t/1.cc: Likewise. From-SVN: r109275
This commit is contained in:
parent
b2ecb7a8e6
commit
9c5093d1a6
|
|
@ -1,3 +1,10 @@
|
||||||
|
2006-01-03 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
|
* testsuite/27_io/basic_stringstream/str/char/1.cc: Initialize vars.
|
||||||
|
* testsuite/27_io/basic_stringstream/str/wchar_t/1.cc: Likewise.
|
||||||
|
* testsuite/27_io/basic_istringstream/str/char/1.cc: Likewise, tidy.
|
||||||
|
* testsuite/27_io/basic_istringstream/str/wchar_t/1.cc: Likewise.
|
||||||
|
|
||||||
2006-01-02 Mark Mitchell <mark@codesourcery.com>
|
2006-01-02 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* src/Makefile.am (LTLDFLAGS): New variable.
|
* src/Makefile.am (LTLDFLAGS): New variable.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
// 2000-01-10 bkoz
|
// 2000-01-10 bkoz
|
||||||
|
|
||||||
// Copyright (C) 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
|
// Copyright (C) 2000, 2001, 2003, 2004, 2005, 2006
|
||||||
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
@ -31,10 +32,9 @@ void test01()
|
||||||
const std::string str01 = "123";
|
const std::string str01 = "123";
|
||||||
std::string str02;
|
std::string str02;
|
||||||
const int i01 = 123;
|
const int i01 = 123;
|
||||||
int a,b;
|
int a = 0, b = 0;
|
||||||
|
|
||||||
std::ios_base::iostate state1, state2, statefail, stateeof;
|
std::ios_base::iostate state1, state2, stateeof;
|
||||||
statefail = std::ios_base::failbit;
|
|
||||||
stateeof = std::ios_base::eofbit;
|
stateeof = std::ios_base::eofbit;
|
||||||
|
|
||||||
// string str() const
|
// string str() const
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2004 Free Software Foundation, Inc.
|
// Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
@ -29,10 +29,9 @@ void test01()
|
||||||
const std::wstring str01 = L"123";
|
const std::wstring str01 = L"123";
|
||||||
std::wstring str02;
|
std::wstring str02;
|
||||||
const int i01 = 123;
|
const int i01 = 123;
|
||||||
int a, b;
|
int a = 0, b = 0;
|
||||||
|
|
||||||
std::ios_base::iostate state1, state2, statefail, stateeof;
|
std::ios_base::iostate state1, state2, stateeof;
|
||||||
statefail = std::ios_base::failbit;
|
|
||||||
stateeof = std::ios_base::eofbit;
|
stateeof = std::ios_base::eofbit;
|
||||||
|
|
||||||
// string str() const
|
// string str() const
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
// 2001-05-24 Benjamin Kosnik <bkoz@redhat.com>
|
// 2001-05-24 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
// Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
|
||||||
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
@ -31,7 +32,7 @@ void test01()
|
||||||
const std::string str01 = "123";
|
const std::string str01 = "123";
|
||||||
std::string str02;
|
std::string str02;
|
||||||
const int i01 = 123;
|
const int i01 = 123;
|
||||||
int a,b;
|
int a = 0, b = 0;
|
||||||
|
|
||||||
std::ios_base::iostate state1, state2, stateeof;
|
std::ios_base::iostate state1, state2, stateeof;
|
||||||
stateeof = std::ios_base::eofbit;
|
stateeof = std::ios_base::eofbit;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2004 Free Software Foundation, Inc.
|
// Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
@ -29,7 +29,7 @@ void test01()
|
||||||
const std::wstring str01 = L"123";
|
const std::wstring str01 = L"123";
|
||||||
std::wstring str02;
|
std::wstring str02;
|
||||||
const int i01 = 123;
|
const int i01 = 123;
|
||||||
int a,b;
|
int a = 0, b = 0;
|
||||||
|
|
||||||
std::ios_base::iostate state1, state2, stateeof;
|
std::ios_base::iostate state1, state2, stateeof;
|
||||||
stateeof = std::ios_base::eofbit;
|
stateeof = std::ios_base::eofbit;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue