Fields
| hardware | None |
| os | None |
Parameters
Fields
| Name | Value |
|---|
Parameters
| Name | Value |
|---|---|
| git_commit |
commit 82d21814e6556480a71c83a2f8da350d0c8cadf6 Author: Mark de Wever <koraq@xs4all.nl> Date: Tue Jan 16 17:33:01 2024 +0100 [libc++][print] Includes <format>. (#76333) The overloads of `println` are specified in terms of `format`. The function `format` is specified to work with ranges. The implementations for `println` do not include `<format>`, but libc++'s granularized header. This means the following example does not work #include <vector> #include <print> int main() { std::vector<int> v{1, 2, 3}; std::println("{}", v); } (The other print functions also require this to work, they are specified in terms of other format functions.) Fixes: https://github.com/llvm/llvm-project/issues/71925 |