libstdc++: Fix comment to refer to correct PR
authorJonathan Wakely <jwakely@redhat.com>
Thu, 6 Feb 2020 11:33:12 +0000 (11:33 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Thu, 6 Feb 2020 13:32:48 +0000 (13:32 +0000)
* include/bits/stl_iterator.h (__detail::__common_iter_ptr): Fix PR
number in comment. Fix indentation.

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_iterator.h

index a9c96ac..5ce1473 100644 (file)
@@ -1,5 +1,8 @@
 2020-02-06  Jonathan Wakely  <jwakely@redhat.com>
 
+       * include/bits/stl_iterator.h (__detail::__common_iter_ptr): Fix PR
+       number in comment. Fix indentation.
+
        * include/bits/stl_algobase.h (__iter_swap, __iter_swap<true>): Remove
        redundant _GLIBCXX20_CONSTEXPR.
 
index c200f7a..69c6ae6 100644 (file)
@@ -1737,12 +1737,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   namespace __detail
   {
-    // FIXME: This has to be at namespace-scope because of PR 92078.
+    // FIXME: This has to be at namespace-scope because of PR 92103.
     template<typename _Iter>
       struct __common_iter_ptr
-       {
-         using type = void;
-       };
+      {
+       using type = void;
+      };
 
     template<typename _Iter>
       requires __detail::__common_iter_has_arrow<_Iter>