[libc++] Add missing friend keyword
authorLouis Dionne <ldionne@apple.com>
Tue, 15 Sep 2020 18:19:06 +0000 (14:19 -0400)
committerLouis Dionne <ldionne@apple.com>
Tue, 15 Sep 2020 18:21:05 +0000 (14:21 -0400)
Otherwise, we're declaring a non-static member function, and that
gives errors in C++11 because of the change of semantics between
C++11 and C++14 for non-const constexpr member functions.

This was always intended to be a friend declaration.

libcxx/include/iterator

index 45516db..e2910e9 100644 (file)
@@ -1618,7 +1618,7 @@ private:
     __unwrap_iter(__wrap_iter<_Tp*>);
 #else
   template <class _Tp>
-  inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
+  inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR friend
   typename enable_if
   <
       is_trivially_copy_assignable<_Tp>::value,