re PR libstdc++/26142 (global debug namespace clashes everywhere)

2006-02-08  Benjamin Kosnik  <bkoz@redhat.com>

	PR libstdc++/26142
	* include/debug/debug.h: Move debug alias inside namespace std,
	same with namespace __gnu_cxx. Add top-level __gnu_debug
	namespace.	
	* include/debug/hash_multimap.h: Nest within __gnu_cxx, not
	std. Also, change nesting namespace name from __gnu_debug_def to
	__gnu_debug.	
	* include/debug/hash_map.h: Same.
	* include/debug/hash_multiset.h: Same.
	* include/debug/hash_set.h: Same.
	* docs/html/debug.html: Same.
	* testsuite/23_containers/vector/26412.cc: New.
	* testsuite/23_containers/vector/invalidation/1.cc:  Correct
	qualifications for debug namespace change.
	* testsuite/23_containers/vector/invalidation/2.cc: Same.
	* testsuite/23_containers/vector/invalidation/3.cc: Same.
	* testsuite/23_containers/vector/invalidation/4.cc: Same.
	* testsuite/23_containers/deque/invalidation/1.cc: Same.
	* testsuite/23_containers/deque/invalidation/2.cc: Same.
	* testsuite/23_containers/deque/invalidation/3.cc: Same.
	* testsuite/23_containers/deque/invalidation/4.cc: Same.
	* testsuite/23_containers/multiset/invalidation/1.cc: Same.
	* testsuite/23_containers/multiset/invalidation/2.cc: Same.
	* testsuite/23_containers/multimap/invalidation/1.cc: Same.
	* testsuite/23_containers/multimap/invalidation/2.cc: Same.
	* testsuite/23_containers/bitset/invalidation/1.cc: Same.
	* testsuite/23_containers/bitset/cons/16020.cc: Same.
	* testsuite/23_containers/bitset/operations/13838.cc: Same.
	* testsuite/23_containers/list/invalidation/1.cc: Same.
	* testsuite/23_containers/list/invalidation/2.cc: Same.
	* testsuite/23_containers/list/invalidation/3.cc: Same.
	* testsuite/23_containers/list/invalidation/4.cc: Same.
	* testsuite/23_containers/set/invalidation/1.cc: Same.
	* testsuite/23_containers/set/invalidation/2.cc: Same.
	* testsuite/23_containers/map/invalidation/1.cc: Same.
	* testsuite/23_containers/map/invalidation/2.cc: Same.
	* testsuite/23_containers/map/modifiers/insert/16813.cc: Same.
	* testsuite/21_strings/basic_string/2.cc: Same.

From-SVN: r110786
This commit is contained in:
Benjamin Kosnik 2006-02-09 04:31:38 +00:00 committed by Benjamin Kosnik
parent d537b2ebb0
commit 7ec4a5ce43
32 changed files with 139 additions and 87 deletions

View File

@ -1,3 +1,44 @@
2006-02-08 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/26142
* include/debug/debug.h: Move debug alias inside namespace std,
same with namespace __gnu_cxx. Add top-level __gnu_debug
namespace.
* include/debug/hash_multimap.h: Nest within __gnu_cxx, not
std. Also, change nesting namespace name from __gnu_debug_def to
__gnu_debug.
* include/debug/hash_map.h: Same.
* include/debug/hash_multiset.h: Same.
* include/debug/hash_set.h: Same.
* docs/html/debug.html: Same.
* testsuite/23_containers/vector/26412.cc: New.
* testsuite/23_containers/vector/invalidation/1.cc: Correct
qualifications for debug namespace change.
* testsuite/23_containers/vector/invalidation/2.cc: Same.
* testsuite/23_containers/vector/invalidation/3.cc: Same.
* testsuite/23_containers/vector/invalidation/4.cc: Same.
* testsuite/23_containers/deque/invalidation/1.cc: Same.
* testsuite/23_containers/deque/invalidation/2.cc: Same.
* testsuite/23_containers/deque/invalidation/3.cc: Same.
* testsuite/23_containers/deque/invalidation/4.cc: Same.
* testsuite/23_containers/multiset/invalidation/1.cc: Same.
* testsuite/23_containers/multiset/invalidation/2.cc: Same.
* testsuite/23_containers/multimap/invalidation/1.cc: Same.
* testsuite/23_containers/multimap/invalidation/2.cc: Same.
* testsuite/23_containers/bitset/invalidation/1.cc: Same.
* testsuite/23_containers/bitset/cons/16020.cc: Same.
* testsuite/23_containers/bitset/operations/13838.cc: Same.
* testsuite/23_containers/list/invalidation/1.cc: Same.
* testsuite/23_containers/list/invalidation/2.cc: Same.
* testsuite/23_containers/list/invalidation/3.cc: Same.
* testsuite/23_containers/list/invalidation/4.cc: Same.
* testsuite/23_containers/set/invalidation/1.cc: Same.
* testsuite/23_containers/set/invalidation/2.cc: Same.
* testsuite/23_containers/map/invalidation/1.cc: Same.
* testsuite/23_containers/map/invalidation/2.cc: Same.
* testsuite/23_containers/map/modifiers/insert/16813.cc: Same.
* testsuite/21_strings/basic_string/2.cc: Same.
2006-02-08 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/26133 (DR 241, [WP])

View File

@ -163,91 +163,91 @@
<tr>
<td>std::bitset</td>
<td>&lt;bitset&gt;</td>
<td>debug::bitset</td>
<td>__gnu_debug::bitset</td>
<td>&lt;debug/bitset&gt;</td>
</tr>
<tr>
<td>std::deque</td>
<td>&lt;deque&gt;</td>
<td>debug::deque</td>
<td>__gnu_debug::deque</td>
<td>&lt;debug/deque&gt;</td>
</tr>
<tr>
<td>std::list</td>
<td>&lt;list&gt;</td>
<td>debug::list</td>
<td>__gnu_debug::list</td>
<td>&lt;debug/list&gt;</td>
</tr>
<tr>
<td>std::map</td>
<td>&lt;map&gt;</td>
<td>debug::map</td>
<td>__gnu_debug::map</td>
<td>&lt;debug/map&gt;</td>
</tr>
<tr>
<td>std::multimap</td>
<td>&lt;map&gt;</td>
<td>debug::multimap</td>
<td>__gnu_debug::multimap</td>
<td>&lt;debug/map&gt;</td>
</tr>
<tr>
<td>std::multiset</td>
<td>&lt;set&gt;</td>
<td>debug::multiset</td>
<td>__gnu_debug::multiset</td>
<td>&lt;debug/set&gt;</td>
</tr>
<tr>
<td>std::set</td>
<td>&lt;set&gt;</td>
<td>debug::set</td>
<td>__gnu_debug::set</td>
<td>&lt;debug/set&gt;</td>
</tr>
<tr>
<td>std::string</td>
<td>&lt;string&gt;</td>
<td>debug::string</td>
<td>__gnu_debug::string</td>
<td>&lt;debug/string&gt;</td>
</tr>
<tr>
<td>std::wstring</td>
<td>&lt;string&gt;</td>
<td>debug::wstring</td>
<td>__gnu_debug::wstring</td>
<td>&lt;debug/string&gt;</td>
</tr>
<tr>
<td>std::basic_string</td>
<td>&lt;string&gt;</td>
<td>debug::basic_string</td>
<td>__gnu_debug::basic_string</td>
<td>&lt;debug/string&gt;</td>
</tr>
<tr>
<td>std::vector</td>
<td>&lt;vector&gt;</td>
<td>debug::vector</td>
<td>__gnu_debug::vector</td>
<td>&lt;debug/vector&gt;</td>
</tr>
<tr>
<td>__gnu_cxx::hash_map</td>
<td>&lt;ext/hash_map&gt;</td>
<td>debug::hash_map</td>
<td>__gnu_debug::hash_map</td>
<td>&lt;debug/hash_map&gt;</td>
</tr>
<tr>
<td>__gnu_cxx::hash_multimap</td>
<td>&lt;ext/hash_map&gt;</td>
<td>debug::hash_multimap</td>
<td>__gnu_debug::hash_multimap</td>
<td>&lt;debug/hash_map&gt;</td>
</tr>
<tr>
<td>__gnu_cxx::hash_set</td>
<td>&lt;ext/hash_set&gt;</td>
<td>debug::hash_set</td>
<td>__gnu_debug::hash_set</td>
<td>&lt;debug/hash_set&gt;</td>
</tr>
<tr>
<td>__gnu_cxx::hash_multiset</td>
<td>&lt;ext/hash_set&gt;</td>
<td>debug::hash_multiset</td>
<td>__gnu_debug::hash_multiset</td>
<td>&lt;debug/hash_set&gt;</td>
</tr>
</table>

View File

@ -1,6 +1,6 @@
// Debugging support implementation -*- C++ -*-
// Copyright (C) 2003, 2005
// Copyright (C) 2003, 2005, 2006
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@ -39,14 +39,24 @@
* standard library algorithms.
*/
namespace std
{
namespace __gnu_debug_def { }
namespace __gnu_debug { using namespace __gnu_debug_def; }
namespace debug = __gnu_debug;
}
namespace debug = std::__gnu_debug;
namespace __gnu_cxx
{
namespace __gnu_debug { };
namespace debug = __gnu_debug;
}
namespace __gnu_debug
{
using namespace std::debug;
using namespace __gnu_cxx::debug;
}
#ifdef _GLIBCXX_DEBUG

View File

@ -1,6 +1,6 @@
// Debugging hash_map implementation -*- C++ -*-
// Copyright (C) 2003, 2005
// Copyright (C) 2003, 2005, 2006
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@ -34,9 +34,9 @@
#include <debug/safe_sequence.h>
#include <debug/safe_iterator.h>
namespace std
namespace __gnu_cxx
{
namespace __gnu_debug_def
namespace __gnu_debug
{
template<typename _Value, typename _Tp,
typename _HashFcn = __gnu_cxx::hash<_Value>,
@ -267,7 +267,7 @@ namespace __gnu_debug_def
swap(hash_map<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>& __x,
hash_map<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>& __y)
{ __x.swap(__y); }
} // namespace __gnu_debug_def
} // namespace std
} // namespace __gnu_debug
} // namespace __gnu_cxx
#endif

View File

@ -1,6 +1,6 @@
// Debugging hash_multimap implementation -*- C++ -*-
// Copyright (C) 2003, 2005
// Copyright (C) 2003, 2005, 2006
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@ -34,9 +34,9 @@
#include <debug/safe_sequence.h>
#include <debug/safe_iterator.h>
namespace std
namespace __gnu_cxx
{
namespace __gnu_debug_def
namespace __gnu_debug
{
template<typename _Value, typename _Tp,
typename _HashFcn = __gnu_cxx::hash<_Value>,
@ -258,7 +258,7 @@ namespace __gnu_debug_def
swap(hash_multimap<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>& __x,
hash_multimap<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>& __y)
{ __x.swap(__y); }
} // namespace __gnu_debug_def
} // namespace std
} // namespace __gnu_debug
} // namespace __gnu_cxx
#endif

View File

@ -1,6 +1,6 @@
// Debugging hash_multiset implementation -*- C++ -*-
// Copyright (C) 2003, 2005
// Copyright (C) 2003, 2005, 2006
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@ -34,9 +34,9 @@
#include <debug/safe_sequence.h>
#include <debug/safe_iterator.h>
namespace std
namespace __gnu_cxx
{
namespace __gnu_debug_def
namespace __gnu_debug
{
template<typename _Value,
typename _HashFcn = __gnu_cxx::hash<_Value>,
@ -233,7 +233,7 @@ template<typename _Value, typename _HashFcn, typename _EqualKey, typename _Alloc
swap(hash_multiset<_Value, _HashFcn, _EqualKey, _Alloc>& __x,
hash_multiset<_Value, _HashFcn, _EqualKey, _Alloc>& __y)
{ __x.swap(__y); }
} // namespace __gnu_debug_def
} // namespace std
} // namespace __gnu_debug
} // namespace __gnu_cxx
#endif

View File

@ -1,6 +1,6 @@
// Debugging hash_set implementation -*- C++ -*-
// Copyright (C) 2003, 2005
// Copyright (C) 2003, 2005, 2006
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@ -34,9 +34,9 @@
#include <debug/safe_sequence.h>
#include <debug/safe_iterator.h>
namespace std
namespace __gnu_cxx
{
namespace __gnu_debug_def
namespace __gnu_debug
{
template<typename _Value,
typename _HashFcn = __gnu_cxx::hash<_Value>,
@ -242,7 +242,7 @@ namespace __gnu_debug_def
swap(hash_set<_Value, _HashFcn, _EqualKey, _Alloc>& __x,
hash_set<_Value, _HashFcn, _EqualKey, _Alloc>& __y)
{ __x.swap(__y); }
} // namespace __gnu_debug_def
} // namespace std
} // namespace __gnu_debug
} // namespace __gnu_cxx
#endif

View File

@ -1,4 +1,4 @@
// Copyright (C) 2005 Free Software Foundation, Inc.
// Copyright (C) 2005, 2006 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
@ -32,5 +32,6 @@
// { dg-do compile }
// libstdc++/21770
namespace debug = __gnu_debug;
template class debug::basic_string<int, std::char_traits<int>,
std::allocator<char> >;

View File

@ -1,4 +1,4 @@
// Copyright (C) 2004 Free Software Foundation, Inc.
// Copyright (C) 2004, 2006 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
@ -22,7 +22,7 @@
// libstdc++/16020
void test01()
{
using debug::bitset;
using __gnu_debug::bitset;
bool test __attribute__((unused)) = true;
bitset<5> b(7);

View File

@ -1,6 +1,6 @@
// Bitset reference invalidation tests
// Copyright (C) 2003, 2004 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2006 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
@ -21,7 +21,7 @@
#include <debug/bitset>
#include <testsuite_hooks.h>
using debug::bitset;
using __gnu_debug::bitset;
bool test = true;

View File

@ -1,4 +1,4 @@
// Copyright (C) 2004 Free Software Foundation, Inc.
// Copyright (C) 2004, 2006 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
@ -22,7 +22,7 @@
// libstdc++/13838
void test01()
{
using debug::bitset;
using __gnu_debug::bitset;
bool test __attribute__((unused)) = true;
bitset<4> b0, b1;

View File

@ -1,6 +1,6 @@
// Deque iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -21,7 +21,7 @@
#include <debug/deque>
#include <testsuite_hooks.h>
using debug::deque;
using __gnu_debug::deque;
bool test = true;

View File

@ -1,6 +1,6 @@
// Deque iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -21,7 +21,7 @@
#include <debug/deque>
#include <testsuite_hooks.h>
using debug::deque;
using __gnu_debug::deque;
bool test = true;

View File

@ -1,6 +1,6 @@
// Deque iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -21,7 +21,7 @@
#include <debug/deque>
#include <testsuite_hooks.h>
using debug::deque;
using __gnu_debug::deque;
bool test = true;

View File

@ -1,6 +1,6 @@
// Deque iterator invalidation tests
// Copyright (C) 2003, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2005, 2006 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
@ -21,7 +21,7 @@
#include <debug/deque>
#include <testsuite_hooks.h>
using debug::deque;
using __gnu_debug::deque;
bool test = true;

View File

@ -1,6 +1,6 @@
// List iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::list;
using __gnu_debug::list;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// List iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::list;
using __gnu_debug::list;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// List iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::list;
using __gnu_debug::list;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// List iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::list;
using __gnu_debug::list;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// Map iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::map;
using __gnu_debug::map;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// Map iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::map;
using __gnu_debug::map;
using std::advance;
bool test = true;

View File

@ -1,4 +1,4 @@
// Copyright (C) 2004 Free Software Foundation, Inc.
// Copyright (C) 2004, 2006 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
@ -22,7 +22,7 @@
// libstdc++/16813
void test01()
{
using debug::map;
using __gnu_debug::map;
bool test __attribute__((unused)) = true;
map<int, float> m1, m2;

View File

@ -1,6 +1,6 @@
// Multimap iterator invalidation tests
// Copyright (C) 2003, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2005, 2006 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
@ -23,7 +23,7 @@
#include <testsuite_hooks.h>
#include <utility>
using debug::multimap;
using __gnu_debug::multimap;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// Multimap iterator invalidation tests
// Copyright (C) 2003, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2005, 2006 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
@ -23,7 +23,7 @@
#include <testsuite_hooks.h>
#include <utility>
using debug::multimap;
using __gnu_debug::multimap;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// Multiset iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::multiset;
using __gnu_debug::multiset;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// Multiset iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::multiset;
using __gnu_debug::multiset;
using std::advance;
// Erase

View File

@ -1,6 +1,6 @@
// Set iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::set;
using __gnu_debug::set;
using std::advance;
bool test = true;

View File

@ -1,6 +1,6 @@
// Set iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -22,7 +22,7 @@
#include <iterator>
#include <testsuite_hooks.h>
using debug::set;
using __gnu_debug::set;
using std::advance;
// Erase

View File

@ -1,6 +1,6 @@
// Vector iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -28,7 +28,7 @@
#include <debug/vector>
#include <testsuite_hooks.h>
using debug::vector;
using __gnu_debug::vector;
bool test = true;

View File

@ -1,6 +1,6 @@
// Vector iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -28,7 +28,7 @@
#include <debug/vector>
#include <testsuite_hooks.h>
using debug::vector;
using __gnu_debug::vector;
bool test = true;

View File

@ -1,6 +1,6 @@
// Vector iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -28,7 +28,7 @@
#include <debug/vector>
#include <testsuite_hooks.h>
using debug::vector;
using __gnu_debug::vector;
bool test = true;

View File

@ -1,6 +1,6 @@
// Vector iterator invalidation tests
// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
// Copyright (C) 2003, 2004, 2005, 2006 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
@ -28,7 +28,7 @@
#include <debug/vector>
#include <testsuite_hooks.h>
using debug::vector;
using __gnu_debug::vector;
bool test = true;