[libcxx-commits] [libcxx] [libc++][RFC] Only include what is required by-version in the umbrella headers (PR #83740)

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Mon Mar 4 09:58:43 PST 2024


================
@@ -1119,7 +1119,10 @@ module std_private_charconv_to_chars                [system] { header "__charcon
 module std_private_charconv_to_chars_base_10        [system] { header "__charconv/to_chars_base_10.h" }
 module std_private_charconv_to_chars_floating_point [system] { header "__charconv/to_chars_floating_point.h" }
 module std_private_charconv_to_chars_integral       [system] { header "__charconv/to_chars_integral.h" }
-module std_private_charconv_to_chars_result         [system] { header "__charconv/to_chars_result.h" }
+module std_private_charconv_to_chars_result         [system] {
+  header "__charconv/to_chars_result.h"
+  export *
+}
----------------
mordante wrote:

Does this belong in this patch or should it be committed separately?

https://github.com/llvm/llvm-project/pull/83740


More information about the libcxx-commits mailing list