| 1720 | template <std::size_t Capacity, |
| 1721 | std::size_t Alignment = alignof(std::max_align_t)> |
| 1722 | struct capacity_fixed { |
| 1723 | static constexpr std::size_t capacity = Capacity; |
| 1724 | static constexpr std::size_t alignment = Alignment; |
| 1725 | }; |
| 1726 | |
| 1727 | /// Default capacity for small functor optimization |
| 1728 | struct capacity_default |
nothing calls this directly
no outgoing calls
no test coverage detected