2010-07-27 19:27:06 +02:00
|
|
|
// <range_access.h> -*- C++ -*-
|
|
|
|
|
2015-01-05 13:33:28 +01:00
|
|
|
// Copyright (C) 2010-2015 Free Software Foundation, Inc.
|
2010-07-27 19:27:06 +02:00
|
|
|
//
|
|
|
|
// 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 3, 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.
|
|
|
|
|
|
|
|
// Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
// permissions described in the GCC Runtime Library Exception, version
|
|
|
|
// 3.1, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License and
|
|
|
|
// a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/** @file bits/range_access.h
|
|
|
|
* This is an internal header file, included by other library headers.
|
2010-12-19 10:21:16 +01:00
|
|
|
* Do not attempt to use it directly. @headername{iterator}
|
2010-07-27 19:27:06 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GLIBCXX_RANGE_ACCESS_H
|
|
|
|
#define _GLIBCXX_RANGE_ACCESS_H 1
|
|
|
|
|
|
|
|
#pragma GCC system_header
|
|
|
|
|
2012-11-10 18:27:22 +01:00
|
|
|
#if __cplusplus >= 201103L
|
2015-01-19 15:37:03 +01:00
|
|
|
#include <initializer_list>
|
PR libstdc++/36104 part four
2011-01-30 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/36104 part four
* include/bits/c++config (_GLIBCXX_STD): Remove.
(_GLIBCXX_STD_D, _GLIBCXX_PR): Now _GLIBCXX_STD_C.
(_GLIBCXX_P): Now _GLIBCXX_STD_A.
(_GLIBCXX_NAMESPACE_DEBUG, _GLIBCXX_NAMESPACE_PARALLEL,
_GLIBCXX_NAMESPACE_PROFILE, _GLIBCXX_NAMESPACE_VERSION): Remove.
(_GLIBCXX_INLINE_DEBUG, _GLIBCXX_INLINE_PARALLEL,
_GLIBCXX_INLINE_PROFILE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE(X)): Remove.
(_GLIBCXX_END_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)): Remove.
(_GLIBCXX_END_NESTED_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE_ALGO): Add.
(_GLIBCXX_END_NAMESPACE_ALGO): Add.
(_GLIBCXX_BEGIN_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_END_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_BEGIN_NAMESPACE_VERSION): Add.
(_GLIBCXX_END_NAMESPACE_VERSION): Add.
(_GLIBCXX_BEGIN_LDBL_NAMESPACE): To _GLIBCXX_BEGIN_NAMESPACE_LDBL.
(_GLIBCXX_END_LDBL_NAMESPACE): To _GLIBCXX_END_NAMESPACE_LDBL.
(_GLIBCXX_VISIBILITY_ATTR): Revert to _GLIBCXX_VISIBILITY.
* include/*: Use new macros for namespace scope.
* config/*: Same.
* src/*: Same.
* src/Makefile.am (sources): Remove debug_list.cc, add
compatibility-debug_list-2.cc.
(parallel_sources): Remove parallel_list.cc, add
compatibility-parallel_list-2.cc.
(compatibility-parallel_list-2.[o,lo]): New rule.
* src/Makefile.in: Regenerate.
* src/debug_list.cc: Remove.
* src/parallel_list.cc: Remove.
* src/compatibility-list-2.cc: New.
* src/compatibility-debug_list-2.cc: New.
* src/compatibility-parallel_list-2.cc: New.
* doc/doxygen/user.cfg.in: Adjust macros.
* testsuite/20_util/auto_ptr/assign_neg.cc: Adjust line numbers, macros.
* testsuite/20_util/declval/requirements/1_neg.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg1.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg2.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg3.cc: Same.
* testsuite/20_util/forward/c_neg.cc: Same.
* testsuite/20_util/forward/f_neg.cc: Same.
* testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Same.
* testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Same.
* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Same.
* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/forward_list/capacity/1.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
assign_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
insert_neg.cc: Same.
* testsuite/23_containers/list/capacity/29134.cc: Same.
* testsuite/23_containers/list/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/vector/bool/capacity/29134.cc: Same.
* testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: Same.
* testsuite/25_algorithms/sort/35588.cc: Same.
* testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
* testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
* testsuite/ext/profile/mutex_extensions_neg.cc: Same.
* testsuite/ext/profile/profiler_algos.cc: Same.
* testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Same.
* testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc: Same.
From-SVN: r169421
2011-01-30 23:39:36 +01:00
|
|
|
namespace std _GLIBCXX_VISIBILITY(default)
|
|
|
|
{
|
|
|
|
_GLIBCXX_BEGIN_NAMESPACE_VERSION
|
2010-07-27 19:27:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to the first element of
|
|
|
|
* the container.
|
2011-08-07 09:27:06 +02:00
|
|
|
* @param __cont Container.
|
2010-07-27 19:27:06 +02:00
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2010-07-27 19:27:06 +02:00
|
|
|
inline auto
|
|
|
|
begin(_Container& __cont) -> decltype(__cont.begin())
|
|
|
|
{ return __cont.begin(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to the first element of
|
|
|
|
* the const container.
|
2011-08-07 09:27:06 +02:00
|
|
|
* @param __cont Container.
|
2010-07-27 19:27:06 +02:00
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2010-07-27 19:27:06 +02:00
|
|
|
inline auto
|
|
|
|
begin(const _Container& __cont) -> decltype(__cont.begin())
|
|
|
|
{ return __cont.begin(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to one past the last element of
|
|
|
|
* the container.
|
2011-08-07 09:27:06 +02:00
|
|
|
* @param __cont Container.
|
2010-07-27 19:27:06 +02:00
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2010-07-27 19:27:06 +02:00
|
|
|
inline auto
|
|
|
|
end(_Container& __cont) -> decltype(__cont.end())
|
|
|
|
{ return __cont.end(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to one past the last element of
|
|
|
|
* the const container.
|
2011-08-07 09:27:06 +02:00
|
|
|
* @param __cont Container.
|
2010-07-27 19:27:06 +02:00
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2010-07-27 19:27:06 +02:00
|
|
|
inline auto
|
|
|
|
end(const _Container& __cont) -> decltype(__cont.end())
|
|
|
|
{ return __cont.end(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to the first element of the array.
|
2011-08-07 09:27:06 +02:00
|
|
|
* @param __arr Array.
|
2010-07-27 19:27:06 +02:00
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Tp, size_t _Nm>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline _GLIBCXX14_CONSTEXPR _Tp*
|
2010-07-27 19:27:06 +02:00
|
|
|
begin(_Tp (&__arr)[_Nm])
|
|
|
|
{ return __arr; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to one past the last element
|
|
|
|
* of the array.
|
2011-08-07 09:27:06 +02:00
|
|
|
* @param __arr Array.
|
2010-07-27 19:27:06 +02:00
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Tp, size_t _Nm>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline _GLIBCXX14_CONSTEXPR _Tp*
|
2010-07-27 19:27:06 +02:00
|
|
|
end(_Tp (&__arr)[_Nm])
|
|
|
|
{ return __arr + _Nm; }
|
|
|
|
|
2015-01-19 15:37:03 +01:00
|
|
|
#if __cplusplus >= 201402L
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to the first element of
|
|
|
|
* the const container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline constexpr auto
|
|
|
|
cbegin(const _Container& __cont) noexcept(noexcept(std::begin(__cont)))
|
|
|
|
-> decltype(std::begin(__cont))
|
|
|
|
{ return std::begin(__cont); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return an iterator pointing to one past the last element of
|
|
|
|
* the const container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline constexpr auto
|
|
|
|
cend(const _Container& __cont) noexcept(noexcept(std::end(__cont)))
|
|
|
|
-> decltype(std::end(__cont))
|
|
|
|
{ return std::end(__cont); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing to the last element of
|
|
|
|
* the container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline auto
|
|
|
|
rbegin(_Container& __cont) -> decltype(__cont.rbegin())
|
|
|
|
{ return __cont.rbegin(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing to the last element of
|
|
|
|
* the const container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline auto
|
|
|
|
rbegin(const _Container& __cont) -> decltype(__cont.rbegin())
|
|
|
|
{ return __cont.rbegin(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing one past the first element of
|
|
|
|
* the container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline auto
|
|
|
|
rend(_Container& __cont) -> decltype(__cont.rend())
|
|
|
|
{ return __cont.rend(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing one past the first element of
|
|
|
|
* the const container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline auto
|
|
|
|
rend(const _Container& __cont) -> decltype(__cont.rend())
|
|
|
|
{ return __cont.rend(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing to the last element of
|
|
|
|
* the array.
|
|
|
|
* @param __arr Array.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Tp, size_t _Nm>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline reverse_iterator<_Tp*>
|
|
|
|
rbegin(_Tp (&__arr)[_Nm])
|
|
|
|
{ return reverse_iterator<_Tp*>(__arr + _Nm); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing one past the first element of
|
|
|
|
* the array.
|
|
|
|
* @param __arr Array.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Tp, size_t _Nm>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline reverse_iterator<_Tp*>
|
|
|
|
rend(_Tp (&__arr)[_Nm])
|
|
|
|
{ return reverse_iterator<_Tp*>(__arr); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing to the last element of
|
|
|
|
* the initializer_list.
|
|
|
|
* @param __il initializer_list.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Tp>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline reverse_iterator<const _Tp*>
|
|
|
|
rbegin(initializer_list<_Tp> __il)
|
|
|
|
{ return reverse_iterator<const _Tp*>(__il.end()); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing one past the first element of
|
|
|
|
* the initializer_list.
|
|
|
|
* @param __il initializer_list.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Tp>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline reverse_iterator<const _Tp*>
|
|
|
|
rend(initializer_list<_Tp> __il)
|
|
|
|
{ return reverse_iterator<const _Tp*>(__il.begin()); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing to the last element of
|
|
|
|
* the const container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline auto
|
|
|
|
crbegin(const _Container& __cont) -> decltype(std::rbegin(__cont))
|
|
|
|
{ return std::rbegin(__cont); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return a reverse iterator pointing one past the first element of
|
|
|
|
* the const container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
2015-07-29 14:41:32 +02:00
|
|
|
template<typename _Container>
|
2015-01-19 15:37:03 +01:00
|
|
|
inline auto
|
|
|
|
crend(const _Container& __cont) -> decltype(std::rend(__cont))
|
|
|
|
{ return std::rend(__cont); }
|
|
|
|
|
|
|
|
#endif // C++14
|
|
|
|
|
2015-07-29 14:41:32 +02:00
|
|
|
#if __cplusplus > 201402L
|
2015-08-13 15:57:41 +02:00
|
|
|
#define __cpp_lib_nonmember_container_access 201411
|
2015-07-29 14:41:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return the size of a container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
|
|
|
template <typename _Container>
|
|
|
|
constexpr auto
|
|
|
|
size(const _Container& __cont) -> decltype(__cont.size())
|
|
|
|
{ return __cont.size(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return the size of an array.
|
|
|
|
* @param __array Array.
|
|
|
|
*/
|
2015-08-03 17:56:17 +02:00
|
|
|
template <typename _Tp, size_t _Nm>
|
2015-07-29 14:41:32 +02:00
|
|
|
constexpr size_t
|
2015-08-03 17:56:17 +02:00
|
|
|
size(const _Tp (&/*__array*/)[_Nm]) noexcept
|
|
|
|
{ return _Nm; }
|
2015-07-29 14:41:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return whether a container is empty.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
|
|
|
template <typename _Container>
|
|
|
|
constexpr auto
|
|
|
|
empty(const _Container& __cont) -> decltype(__cont.empty())
|
|
|
|
{ return __cont.empty(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return whether an array is empty (always false).
|
|
|
|
* @param __array Container.
|
|
|
|
*/
|
2015-08-03 17:56:17 +02:00
|
|
|
template <typename _Tp, size_t _Nm>
|
2015-07-29 14:41:32 +02:00
|
|
|
constexpr bool
|
2015-08-03 17:56:17 +02:00
|
|
|
empty(const _Tp (&/*__array*/)[_Nm]) noexcept
|
2015-07-29 14:41:32 +02:00
|
|
|
{ return false; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return whether an initializer_list is empty.
|
|
|
|
* @param __il Initializer list.
|
|
|
|
*/
|
|
|
|
template <typename _Tp>
|
|
|
|
constexpr bool
|
|
|
|
empty(initializer_list<_Tp> __il) noexcept
|
|
|
|
{ return __il.size() == 0;}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return the data pointer of a container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
|
|
|
template <typename _Container>
|
|
|
|
constexpr auto
|
|
|
|
data(_Container& __cont) -> decltype(__cont.data())
|
|
|
|
{ return __cont.data(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return the data pointer of a const container.
|
|
|
|
* @param __cont Container.
|
|
|
|
*/
|
|
|
|
template <typename _Container>
|
|
|
|
constexpr auto
|
|
|
|
data(const _Container& __cont) -> decltype(__cont.data())
|
|
|
|
{ return __cont.data(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return the data pointer of an array.
|
|
|
|
* @param __array Array.
|
|
|
|
*/
|
2015-08-03 17:56:17 +02:00
|
|
|
template <typename _Tp, size_t _Nm>
|
2015-07-29 14:41:32 +02:00
|
|
|
constexpr _Tp*
|
2015-08-03 17:56:17 +02:00
|
|
|
data(_Tp (&__array)[_Nm]) noexcept
|
2015-07-29 14:41:32 +02:00
|
|
|
{ return __array; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return the data pointer of an initializer list.
|
|
|
|
* @param __il Initializer list.
|
|
|
|
*/
|
|
|
|
template <typename _Tp>
|
|
|
|
constexpr const _Tp*
|
|
|
|
data(initializer_list<_Tp> __il) noexcept
|
|
|
|
{ return __il.begin(); }
|
|
|
|
|
|
|
|
#endif // C++17
|
|
|
|
|
PR libstdc++/36104 part four
2011-01-30 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/36104 part four
* include/bits/c++config (_GLIBCXX_STD): Remove.
(_GLIBCXX_STD_D, _GLIBCXX_PR): Now _GLIBCXX_STD_C.
(_GLIBCXX_P): Now _GLIBCXX_STD_A.
(_GLIBCXX_NAMESPACE_DEBUG, _GLIBCXX_NAMESPACE_PARALLEL,
_GLIBCXX_NAMESPACE_PROFILE, _GLIBCXX_NAMESPACE_VERSION): Remove.
(_GLIBCXX_INLINE_DEBUG, _GLIBCXX_INLINE_PARALLEL,
_GLIBCXX_INLINE_PROFILE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE(X)): Remove.
(_GLIBCXX_END_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)): Remove.
(_GLIBCXX_END_NESTED_NAMESPACE): Remove.
(_GLIBCXX_BEGIN_NAMESPACE_ALGO): Add.
(_GLIBCXX_END_NAMESPACE_ALGO): Add.
(_GLIBCXX_BEGIN_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_END_NAMESPACE_CONTAINER): Add.
(_GLIBCXX_BEGIN_NAMESPACE_VERSION): Add.
(_GLIBCXX_END_NAMESPACE_VERSION): Add.
(_GLIBCXX_BEGIN_LDBL_NAMESPACE): To _GLIBCXX_BEGIN_NAMESPACE_LDBL.
(_GLIBCXX_END_LDBL_NAMESPACE): To _GLIBCXX_END_NAMESPACE_LDBL.
(_GLIBCXX_VISIBILITY_ATTR): Revert to _GLIBCXX_VISIBILITY.
* include/*: Use new macros for namespace scope.
* config/*: Same.
* src/*: Same.
* src/Makefile.am (sources): Remove debug_list.cc, add
compatibility-debug_list-2.cc.
(parallel_sources): Remove parallel_list.cc, add
compatibility-parallel_list-2.cc.
(compatibility-parallel_list-2.[o,lo]): New rule.
* src/Makefile.in: Regenerate.
* src/debug_list.cc: Remove.
* src/parallel_list.cc: Remove.
* src/compatibility-list-2.cc: New.
* src/compatibility-debug_list-2.cc: New.
* src/compatibility-parallel_list-2.cc: New.
* doc/doxygen/user.cfg.in: Adjust macros.
* testsuite/20_util/auto_ptr/assign_neg.cc: Adjust line numbers, macros.
* testsuite/20_util/declval/requirements/1_neg.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg1.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg2.cc: Same.
* testsuite/20_util/duration/requirements/typedefs_neg3.cc: Same.
* testsuite/20_util/forward/c_neg.cc: Same.
* testsuite/20_util/forward/f_neg.cc: Same.
* testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same.
* testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Same.
* testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Same.
* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Same.
* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/forward_list/capacity/1.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
assign_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/forward_list/requirements/dr438/
insert_neg.cc: Same.
* testsuite/23_containers/list/capacity/29134.cc: Same.
* testsuite/23_containers/list/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/insert_neg.cc: Same.
* testsuite/23_containers/vector/bool/capacity/29134.cc: Same.
* testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: Same.
* testsuite/25_algorithms/sort/35588.cc: Same.
* testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
* testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
* testsuite/ext/profile/mutex_extensions_neg.cc: Same.
* testsuite/ext/profile/profiler_algos.cc: Same.
* testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Same.
* testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Same.
* testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc: Same.
From-SVN: r169421
2011-01-30 23:39:36 +01:00
|
|
|
_GLIBCXX_END_NAMESPACE_VERSION
|
|
|
|
} // namespace
|
2010-07-27 19:27:06 +02:00
|
|
|
|
2012-11-10 18:27:22 +01:00
|
|
|
#endif // C++11
|
2010-07-27 19:27:06 +02:00
|
|
|
|
|
|
|
#endif // _GLIBCXX_RANGE_ACCESS_H
|