From 6b257af82261a526b79c0e65c8eed073e916e711 Mon Sep 17 00:00:00 2001 From: Nikolas Klauser Date: Mon, 25 Apr 2022 15:17:12 +0200 Subject: [PATCH] [libc++] Fix C++03 with the unstable ABI enabled --- libcxx/include/__bit_reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/include/__bit_reference b/libcxx/include/__bit_reference index b6a4699df907..8c4f1badbd35 100644 --- a/libcxx/include/__bit_reference +++ b/libcxx/include/__bit_reference @@ -1112,7 +1112,7 @@ public: #ifndef _LIBCPP_ABI_BITSET_VECTOR_BOOL_CONST_SUBSCRIPT_RETURN_BOOL typedef typename conditional<_IsConst, __bit_const_reference<_Cp>, __bit_reference<_Cp> >::type reference; #else - using reference = typename conditional<_IsConst, bool, __bit_reference<_Cp>>::type; + using reference = typename conditional<_IsConst, bool, __bit_reference<_Cp> >::type; #endif typedef random_access_iterator_tag iterator_category;