Fields

hardware None
os None

Parameters

Fields

NameValue

Parameters

NameValue
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
Filter

ldionne-old-macbook-results test results

Run Order Start Time Duration
Current 486371 2025-12-16T16:40:01 0:00:00
Previous 486035 2025-12-16T16:40:01 0:00:00
Baseline 485288 2025-12-16T16:40:01 0:00:00


Tests Summary

Status Group # # (B)
Total Tests 0

Report Time: 0.11s