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/module.modulemap.in
Show First 20 Lines • Show All 681 Lines • ▼ Show 20 Lines | module bitset { | ||||
export * | export * | ||||
} | } | ||||
// No submodule for cassert. It fundamentally needs repeated, textual inclusion. | // No submodule for cassert. It fundamentally needs repeated, textual inclusion. | ||||
module charconv { | module charconv { | ||||
header "charconv" | header "charconv" | ||||
export * | export * | ||||
module __charconv { | module __charconv { | ||||
module chars_format { private header "__charconv/chars_format.h" } | module chars_format { private header "__charconv/chars_format.h" } | ||||
module from_chars_integral { private header "__charconv/from_chars_integral.h" } | |||||
module from_chars_result { private header "__charconv/from_chars_result.h" } | module from_chars_result { private header "__charconv/from_chars_result.h" } | ||||
philnik: Why do you deviate from the normal style here? | |||||
Good point, I should increment the indention of the others. Mordante: Good point, I should increment the indention of the others. | |||||
module tables { private header "__charconv/tables.h" } | module tables { private header "__charconv/tables.h" } | ||||
module to_chars { private header "__charconv/to_chars.h" } | |||||
module to_chars_base_10 { private header "__charconv/to_chars_base_10.h" } | module to_chars_base_10 { private header "__charconv/to_chars_base_10.h" } | ||||
module to_chars_floating_point { private header "__charconv/to_chars_floating_point.h" } | |||||
module to_chars_integral { private header "__charconv/to_chars_integral.h" } | |||||
module to_chars_result { private header "__charconv/to_chars_result.h" } | module to_chars_result { private header "__charconv/to_chars_result.h" } | ||||
module traits { private header "__charconv/traits.h" } | |||||
} | } | ||||
} | } | ||||
module chrono { | module chrono { | ||||
header "chrono" | header "chrono" | ||||
export * | export * | ||||
module __chrono { | module __chrono { | ||||
▲ Show 20 Lines • Show All 1,081 Lines • Show Last 20 Lines |
Why do you deviate from the normal style here?