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 11cce3517bc89493bc4e056c7e85df5f42b51da1..ad736788106999194f6b9fec3c707f2afd82665f 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 70c1f9b66894e9c58043ecb7c1d52ac2918fe124..c5ae5b123fea7ded57eaa129e98f32f64117b352 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; };