We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__conditional_t
1 parent 02f54f2 commit 1c1a4a9Copy full SHA for 1c1a4a9
libcxx/include/deque
@@ -277,9 +277,9 @@ struct __deque_block_size {
277
// We need to transform the type to something like FancyPtr<const FancyPtr<_ValueType>>.
278
template <class _ValueType, class _MapPointer>
279
using __get_deque_map_iterator _LIBCPP_NODEBUG =
280
- conditional_t<is_const<__libcpp_remove_reference_t<decltype(**_MapPointer())> >::value,
281
- __rebind_pointer_t<_MapPointer, const __rebind_pointer_t<_MapPointer, _ValueType> >,
282
- _MapPointer>;
+ __conditional_t<is_const<__libcpp_remove_reference_t<decltype(**_MapPointer())> >::value,
+ __rebind_pointer_t<_MapPointer, const __rebind_pointer_t<_MapPointer, _ValueType> >,
+ _MapPointer>;
283
284
template <class _ValueType,
285
class _Pointer,
0 commit comments