Skip to content

Commit 0171139

Browse files
committed
Fix friend declarations
1 parent 75854a0 commit 0171139

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/experimental/propagate_const

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ private:
207207

208208
public:
209209

210-
template <class _Up> friend _LIBCPP_CONSTEXPR const _Up& experimental::get_underlying(const propagate_const<_Up>& __pu) _NOEXCEPT;
211-
template <class _Up> friend _LIBCPP_CONSTEXPR _Up& experimental::get_underlying(propagate_const<_Up>& __pu) _NOEXCEPT;
210+
template <class _Up> friend _LIBCPP_CONSTEXPR const _Up& experimental::fundamentals_v2::get_underlying(const propagate_const<_Up>& __pu) _NOEXCEPT;
211+
template <class _Up> friend _LIBCPP_CONSTEXPR _Up& experimental::fundamentals_v2::get_underlying(propagate_const<_Up>& __pu) _NOEXCEPT;
212212

213213
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR propagate_const() = default;
214214

0 commit comments

Comments
 (0)