Commit 5211593c by Jonathan Wakely Committed by Jonathan Wakely

Fix typo in preprocessor check

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

From-SVN: r277628
parent f653eb0e
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> 2019-10-29 Jonathan Wakely <jwakely@redhat.com>
* include/bits/range_access.h (ranges::disable_sized_range) * include/bits/range_access.h (ranges::disable_sized_range)
......
...@@ -184,7 +184,7 @@ namespace __gnu_test ...@@ -184,7 +184,7 @@ namespace __gnu_test
void operator,(const T&, const output_iterator_wrapper<U>&) = delete; void operator,(const T&, const output_iterator_wrapper<U>&) = delete;
#endif #endif
#if __cplusplus >= 2011L #if __cplusplus >= 201103L
using std::remove_cv; using std::remove_cv;
#else #else
template<typename T> struct remove_cv { typedef T type; }; template<typename T> struct remove_cv { typedef T 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