diff options
Diffstat (limited to 'libcxx/include/__flat_map/key_value_iterator.h')
| -rw-r--r-- | libcxx/include/__flat_map/key_value_iterator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/__flat_map/key_value_iterator.h b/libcxx/include/__flat_map/key_value_iterator.h index 987ac677a413..06a23f342997 100644 --- a/libcxx/include/__flat_map/key_value_iterator.h +++ b/libcxx/include/__flat_map/key_value_iterator.h @@ -41,9 +41,9 @@ _LIBCPP_BEGIN_NAMESPACE_STD template <class _Owner, class _KeyContainer, class _MappedContainer, bool _Const> struct __key_value_iterator { private: - using __key_iterator = ranges::iterator_t<const _KeyContainer>; - using __mapped_iterator = ranges::iterator_t<__maybe_const<_Const, _MappedContainer>>; - using __reference = _If<_Const, typename _Owner::const_reference, typename _Owner::reference>; + using __key_iterator _LIBCPP_NODEBUG = ranges::iterator_t<const _KeyContainer>; + using __mapped_iterator _LIBCPP_NODEBUG = ranges::iterator_t<__maybe_const<_Const, _MappedContainer>>; + using __reference _LIBCPP_NODEBUG = _If<_Const, typename _Owner::const_reference, typename _Owner::reference>; struct __arrow_proxy { __reference __ref_; |
