From: redi Date: Wed, 30 Oct 2019 15:47:39 +0000 (+0000) Subject: Fix typo in preprocessor check X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5ebbb98a156731d25eceeddf4ec8457bf70aec1;p=thirdparty%2Fgcc.git Fix typo in preprocessor check * testsuite/util/testsuite_iterators.h: Fix typo in __cplusplus check. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@277628 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 11cce3517bc8..ad7367881069 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2019-10-30 Jonathan Wakely + + * testsuite/util/testsuite_iterators.h: Fix typo in __cplusplus check. + 2019-10-29 Jonathan Wakely * include/bits/range_access.h (ranges::disable_sized_range) diff --git a/libstdc++-v3/testsuite/util/testsuite_iterators.h b/libstdc++-v3/testsuite/util/testsuite_iterators.h index 70c1f9b66894..c5ae5b123fea 100644 --- a/libstdc++-v3/testsuite/util/testsuite_iterators.h +++ b/libstdc++-v3/testsuite/util/testsuite_iterators.h @@ -184,7 +184,7 @@ namespace __gnu_test void operator,(const T&, const output_iterator_wrapper&) = delete; #endif -#if __cplusplus >= 2011L +#if __cplusplus >= 201103L using std::remove_cv; #else template struct remove_cv { typedef T type; };