Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
libcxx/include/__format/parser_std_format_spec.h
Show First 20 Lines • Show All 137 Lines • ▼ Show 20 Lines | inline constexpr __fields __fields_floating_point{ | ||||
.__locale_specific_form_ = true, | .__locale_specific_form_ = true, | ||||
.__type_ = true}; | .__type_ = true}; | ||||
inline constexpr __fields __fields_string{.__precision_ = true, .__type_ = true}; | inline constexpr __fields __fields_string{.__precision_ = true, .__type_ = true}; | ||||
inline constexpr __fields __fields_pointer{.__type_ = true}; | inline constexpr __fields __fields_pointer{.__type_ = true}; | ||||
# if _LIBCPP_STD_VER >= 23 | # if _LIBCPP_STD_VER >= 23 | ||||
inline constexpr __fields __fields_tuple{.__use_range_fill_ = true}; | inline constexpr __fields __fields_tuple{.__use_range_fill_ = true}; | ||||
inline constexpr __fields __fields_range{.__use_range_fill_ = true}; | inline constexpr __fields __fields_range{.__use_range_fill_ = true}; | ||||
inline constexpr __fields __fields_fill_align_width{}; | |||||
# endif | # endif | ||||
enum class _LIBCPP_ENUM_VIS __alignment : uint8_t { | enum class _LIBCPP_ENUM_VIS __alignment : uint8_t { | ||||
/// No alignment is set in the format string. | /// No alignment is set in the format string. | ||||
__default, | __default, | ||||
__left, | __left, | ||||
__center, | __center, | ||||
__right, | __right, | ||||
▲ Show 20 Lines • Show All 815 Lines • Show Last 20 Lines |