Skip to content

Commit 1c1a4a9

Browse files
__conditional_t
1 parent 02f54f2 commit 1c1a4a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/deque

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,9 @@ struct __deque_block_size {
277277
// We need to transform the type to something like FancyPtr<const FancyPtr<_ValueType>>.
278278
template <class _ValueType, class _MapPointer>
279279
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>;
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>;
283283

284284
template <class _ValueType,
285285
class _Pointer,

0 commit comments

Comments
 (0)