[libcxx-commits] [libcxx] [libc++][print] Adds ostream overloads. (PR #73262)

via libcxx-commits libcxx-commits at lists.llvm.org
Thu Nov 23 11:56:54 PST 2023


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {darker}-->


:warning: Python code formatter, darker found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
darker --check --diff -r 9ebe6e28cdbe97f6c03209b87e91be6b55a8026a..7e66bd9a5bfbc8f0ceb56305051aae40111ba704 libcxx/utils/generate_feature_test_macro_components.py libcxx/utils/libcxx/test/features.py
``````````

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- libcxx/test/features.py	2023-11-23 19:53:42.000000 +0000
+++ libcxx/test/features.py	2023-11-23 19:56:46.850492 +0000
@@ -532,21 +532,19 @@
         when=lambda cfg: BooleanExpression.evaluate(
             "stdlib=apple-libc++ && target={{.+}}-apple-macosx10.{{(13|14|15)(.0)?}}",
             cfg.available_features,
         ),
     ),
-
     # Tests that require time zone database support in the built library
     Feature(
         name="availability-tzdb-missing",
         when=lambda cfg: BooleanExpression.evaluate(
             # TODO(ldionne) Please provide the correct value.
             "(stdlib=apple-libc++ && target={{.+}}-apple-macosx{{(10.13|10.14|10.15|11.0|12.0|13.0)(.0)?}})",
             cfg.available_features,
         ),
     ),
-
     # Tests that require __libcpp_print support in the built library
     Feature(
         name="availability-print-missing",
         when=lambda cfg: BooleanExpression.evaluate(
             # TODO(ldionne) Please provide the correct value.

``````````

</details>


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


More information about the libcxx-commits mailing list