Skip to content

Commit

Permalink
fixup! fixup! [libc++][string] Remove potential non-trailing 0-length…
Browse files Browse the repository at this point in the history
… array
  • Loading branch information
serge-sans-paille committed Sep 8, 2024
1 parent f17a954 commit 72ff46d
Showing 1 changed file with 10 additions and 19 deletions.
29 changes: 10 additions & 19 deletions libcxx/include/string
Original file line number Diff line number Diff line change
Expand Up @@ -749,40 +749,31 @@ struct __can_be_converted_to_string_view
struct __uninitialized_size_tag {};
struct __init_with_sentinel_tag {};

#ifdef _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
template <size_t _PaddingSize>
struct __padding {
char __padding_[_PaddingSize];
};

template <>
struct __padding<0> {};

template <class _CharT, size_t __min_cap, size_t _Padding = sizeof(_CharT) - 1>
struct __short_layout_alternate {
_CharT __data_[__min_cap];
unsigned char __padding_[_Padding];
_LIBCPP_NO_UNIQUE_ADDRESS __padding<_Padding> __padding_;
unsigned char __size_ : 7;
unsigned char __is_long_ : 1;
};

template <class _CharT, size_t __min_cap>
struct __short_layout_alternate<_CharT, __min_cap, 0> {
_CharT __data_[__min_cap];
unsigned char __size_ : 7;
unsigned char __is_long_ : 1;
};
#else
template <class _CharT, size_t __min_cap, size_t _Padding = sizeof(_CharT) - 1>
struct __short_layout_classic {
struct _LIBCPP_PACKED {
unsigned char __is_long_ : 1;
unsigned char __size_ : 7;
};
char __padding_[_Padding];
_CharT __data_[__min_cap];
};
template <class _CharT, size_t __min_cap>
struct __short_layout_classic<_CharT, __min_cap, 0> {
struct _LIBCPP_PACKED {
unsigned char __is_long_ : 1;
unsigned char __size_ : 7;
};
_LIBCPP_NO_UNIQUE_ADDRESS __padding<_Padding> __padding_;
_CharT __data_[__min_cap];
};
#endif

template <class _CharT, class _Traits, class _Allocator>
class basic_string {
Expand Down

0 comments on commit 72ff46d

Please sign in to comment.