Fix typo in preprocessor check

* testsuite/util/testsuite_iterators.h: Fix typo in __cplusplus check.

From-SVN: r277628
This commit is contained in:
Jonathan Wakely 2019-10-30 15:47:39 +00:00 committed by Jonathan Wakely
parent f653eb0e44
commit 5211593c58
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2019-10-30 Jonathan Wakely <jwakely@redhat.com>
* testsuite/util/testsuite_iterators.h: Fix typo in __cplusplus check.
2019-10-29 Jonathan Wakely <jwakely@redhat.com>
* include/bits/range_access.h (ranges::disable_sized_range)

View file

@ -184,7 +184,7 @@ namespace __gnu_test
void operator,(const T&, const output_iterator_wrapper<U>&) = delete;
#endif
#if __cplusplus >= 2011L
#if __cplusplus >= 201103L
using std::remove_cv;
#else
template<typename T> struct remove_cv { typedef T type; };