Skip to content

Commit 6b257af

Browse files
committed
[libc++] Fix C++03 with the unstable ABI enabled
1 parent 13815e8 commit 6b257af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__bit_reference

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ public:
11121112
#ifndef _LIBCPP_ABI_BITSET_VECTOR_BOOL_CONST_SUBSCRIPT_RETURN_BOOL
11131113
typedef typename conditional<_IsConst, __bit_const_reference<_Cp>, __bit_reference<_Cp> >::type reference;
11141114
#else
1115-
using reference = typename conditional<_IsConst, bool, __bit_reference<_Cp>>::type;
1115+
using reference = typename conditional<_IsConst, bool, __bit_reference<_Cp> >::type;
11161116
#endif
11171117
typedef random_access_iterator_tag iterator_category;
11181118

0 commit comments

Comments
 (0)