libstdc++: Fix __gnu_test::input_iterator_wrapper::operator++(int)
authorJonathan Wakely <jwakely@redhat.com>
Mon, 1 Jun 2020 17:30:47 +0000 (18:30 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 1 Jun 2020 17:30:47 +0000 (18:30 +0100)
I noticed recently that our input_iterator_wrapper utility for writing
tests has the following post-increment operator:

    void
    operator++(int)
    {
      ++*this;
    }

That fails to meet the Cpp17InputIterator requirement that *r++ is
valid. This change makes it return a non-void proxy type that can be
deferenced to produce another proxy, which is convertible to the
value_type. The second proxy converts to const T& to ensure it can't be
written to.

* testsuite/util/testsuite_iterators.h:
(input_iterator_wrapper::operator++(int)): Return proxy object.

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

index 5be47f47915bdb9398c342d8ebc5585d912566ec..71b672c85fa61039816f35d81db281014b62ad40 100644 (file)
@@ -208,6 +208,17 @@ namespace __gnu_test
   : public std::iterator<std::input_iterator_tag, typename remove_cv<T>::type,
                         std::ptrdiff_t, T*, T&>
   {
+    struct post_inc_proxy
+    {
+      struct deref_proxy
+      {
+       T* ptr;
+       operator const T&() const { return *ptr; }
+      } p;
+
+      deref_proxy operator*() const { return p; }
+    };
+
   protected:
     input_iterator_wrapper() : ptr(0), SharedInfo(0)
     { }
@@ -266,10 +277,12 @@ namespace __gnu_test
       return *this;
     }
 
-    void
+    post_inc_proxy
     operator++(int)
     {
+      post_inc_proxy tmp = { { ptr } };
       ++*this;
+      return tmp;
     }
 
 #if __cplusplus >= 201103L