Fix typo in preprocessor check
authorJonathan Wakely <jwakely@redhat.com>
Wed, 30 Oct 2019 15:47:39 +0000 (15:47 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 30 Oct 2019 15:47:39 +0000 (15:47 +0000)
* testsuite/util/testsuite_iterators.h: Fix typo in __cplusplus check.

From-SVN: r277628

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/util/testsuite_iterators.h

index 11cce35..ad73678 100644 (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)
index 70c1f9b..c5ae5b1 100644 (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; };