File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -438,8 +438,7 @@ template <std::size_t N> using smallest_uint_t = decltype(smallest_uint<N>());
438438
439439namespace bit_detail {
440440template <std::size_t ... Offsets>
441- constexpr auto shifts =
442- []() -> std::array<std::size_t , sizeof ...(Offsets) + 1 > {
441+ constexpr auto shifts = []()->std::array<std::size_t , sizeof ...(Offsets) + 1 > {
443442 constexpr auto offsets = std::array{std::size_t {}, Offsets...};
444443 auto s = std::array<std::size_t , sizeof ...(Offsets) + 1 >{};
445444 for (auto i = std::size_t {}; i < sizeof ...(Offsets); ++i) {
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ constexpr auto contains_type(
230230template <tuplelike T, template <typename > typename Proj = std::type_identity_t >
231231[[nodiscard]] constexpr auto sorted_indices () {
232232 return []<std::size_t ... Is>(std::index_sequence<Is...>)
233- -> std::array<std::size_t , sizeof ...(Is)> {
233+ -> std ::array<std::size_t , sizeof ...(Is)> {
234234 using P = std::pair<std::string_view, std::size_t >;
235235 auto a = std::array<P, sizeof ...(Is)>{
236236 P{stdx::type_as_string<Proj<tuple_element_t <Is, T>>>(), Is}...};
You can’t perform that action at this time.
0 commit comments