Commit 4f5f9962 by Jonathan Wakely Committed by Jonathan Wakely

Replace references to C++0x with C++11 in comments

	* include/bits/algorithmfwd.h: Change C++0x to C++11 in comments.
	* include/bits/move.h: Likewise.
	* include/bits/postypes.h: Likewise.
	* include/debug/bitset: Likewise.
	* include/ext/pb_ds/detail/type_utils.hpp: Likewise.
	* include/ext/string_conversions.h: Change C++0x to __cxx11 in
	comment.
	* testsuite/27_io/fpos/14320-1.cc: Change C++0x to C++11 in comment.
	* testsuite/util/thread/all.h: Likewise.

From-SVN: r238402
parent a07b81c7
2016-07-15 Jonathan Wakely <jwakely@redhat.com> 2016-07-15 Jonathan Wakely <jwakely@redhat.com>
* include/bits/algorithmfwd.h: Change C++0x to C++11 in comments.
* include/bits/move.h: Likewise.
* include/bits/postypes.h: Likewise.
* include/debug/bitset: Likewise.
* include/ext/pb_ds/detail/type_utils.hpp: Likewise.
* include/ext/string_conversions.h: Change C++0x to __cxx11 in
comment.
* testsuite/27_io/fpos/14320-1.cc: Change C++0x to C++11 in comment.
* testsuite/util/thread/all.h: Likewise.
* include/bits/stl_algo.h (for_each): Remove redundant _GLIBCXX_MOVE * include/bits/stl_algo.h (for_each): Remove redundant _GLIBCXX_MOVE
and adjust comment. and adjust comment.
......
...@@ -45,14 +45,14 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -45,14 +45,14 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
/* /*
adjacent_find adjacent_find
all_of (C++0x) all_of (C++11)
any_of (C++0x) any_of (C++11)
binary_search binary_search
clamp (C++17) clamp (C++17)
copy copy
copy_backward copy_backward
copy_if (C++0x) copy_if (C++11)
copy_n (C++0x) copy_n (C++11)
count count
count_if count_if
equal equal
...@@ -63,17 +63,17 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -63,17 +63,17 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
find_end find_end
find_first_of find_first_of
find_if find_if
find_if_not (C++0x) find_if_not (C++11)
for_each for_each
generate generate
generate_n generate_n
includes includes
inplace_merge inplace_merge
is_heap (C++0x) is_heap (C++11)
is_heap_until (C++0x) is_heap_until (C++11)
is_partitioned (C++0x) is_partitioned (C++11)
is_sorted (C++0x) is_sorted (C++11)
is_sorted_until (C++0x) is_sorted_until (C++11)
iter_swap iter_swap
lexicographical_compare lexicographical_compare
lower_bound lower_bound
...@@ -83,17 +83,17 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -83,17 +83,17 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
merge merge
min min
min_element min_element
minmax (C++0x) minmax (C++11)
minmax_element (C++0x) minmax_element (C++11)
mismatch mismatch
next_permutation next_permutation
none_of (C++0x) none_of (C++11)
nth_element nth_element
partial_sort partial_sort
partial_sort_copy partial_sort_copy
partition partition
partition_copy (C++0x) partition_copy (C++11)
partition_point (C++0x) partition_point (C++11)
pop_heap pop_heap
prev_permutation prev_permutation
push_heap push_heap
...@@ -116,7 +116,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -116,7 +116,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
set_intersection set_intersection
set_symmetric_difference set_symmetric_difference
set_union set_union
shuffle (C++0x) shuffle (C++11)
sort sort
sort_heap sort_heap
stable_partition stable_partition
......
// Move, forward and identity for C++0x + swap -*- C++ -*- // Move, forward and identity for C++11 + swap -*- C++ -*-
// Copyright (C) 2007-2016 Free Software Foundation, Inc. // Copyright (C) 2007-2016 Free Software Foundation, Inc.
// //
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
// XXX If <stdint.h> is really needed, make sure to define the macros // XXX If <stdint.h> is really needed, make sure to define the macros
// before including it, in order not to break <tr1/cstdint> (and <cstdint> // before including it, in order not to break <tr1/cstdint> (and <cstdint>
// in C++0x). Reconsider all this as soon as possible... // in C++11). Reconsider all this as soon as possible...
#if (defined(_GLIBCXX_HAVE_INT64_T) && !defined(_GLIBCXX_HAVE_INT64_T_LONG) \ #if (defined(_GLIBCXX_HAVE_INT64_T) && !defined(_GLIBCXX_HAVE_INT64_T_LONG) \
&& !defined(_GLIBCXX_HAVE_INT64_T_LONG_LONG)) && !defined(_GLIBCXX_HAVE_INT64_T_LONG_LONG))
......
...@@ -50,7 +50,7 @@ namespace __debug ...@@ -50,7 +50,7 @@ namespace __debug
typedef _GLIBCXX_STD_C::bitset<_Nb> _Base; typedef _GLIBCXX_STD_C::bitset<_Nb> _Base;
public: public:
// In C++0x we rely on normal reference type to preserve the property // In C++11 we rely on normal reference type to preserve the property
// of bitset to be use as a literal. // of bitset to be use as a literal.
// TODO: Find another solution. // TODO: Find another solution.
#if __cplusplus >= 201103L #if __cplusplus >= 201103L
......
...@@ -131,7 +131,7 @@ namespace __gnu_pbds ...@@ -131,7 +131,7 @@ namespace __gnu_pbds
}; };
}; };
// Use C++0x's static_assert if possible. // Use C++11's static_assert if possible.
#if __cplusplus >= 201103L #if __cplusplus >= 201103L
#define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE) #define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE)
#else #else
......
...@@ -100,8 +100,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -100,8 +100,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
__builtin_va_list), std::size_t __n, __builtin_va_list), std::size_t __n,
const _CharT* __fmt, ...) const _CharT* __fmt, ...)
{ {
// XXX Eventually the result will be constructed in place in // XXX Eventually the result should be constructed in-place in
// the C++0x string, likely with the help of internal hooks. // the __cxx11 string, likely with the help of internal hooks.
_CharT* __s = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) _CharT* __s = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
* __n)); * __n));
......
...@@ -36,7 +36,7 @@ void test01() ...@@ -36,7 +36,7 @@ void test01()
bool found = false; bool found = false;
// The C++ standard didn't originally have "long long", however that // The C++ standard didn't originally have "long long", however that
// type will be in the C++0x standard and testing for it allows // type is in the C++11 standard and testing for it allows
// ilp32 targets to pass this test when `Distance' is 64 bits. // ilp32 targets to pass this test when `Distance' is 64 bits.
if (typeid(Distance) == typeid(long long int)) if (typeid(Distance) == typeid(long long int))
found = true; found = true;
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <stdexcept> #include <stdexcept>
#include <type_traits> #include <type_traits>
// C++0x only. // C++11 only.
namespace __gnu_test namespace __gnu_test
{ {
// Assume _Tp::native_handle_type. // Assume _Tp::native_handle_type.
......
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