[ci] Upgrade to wpiformat 2025.36 (#8308)

clang-format 21 made some formatting changes. Since wpiformat's stdlib
task was removed, I removed NOLINT comments for it and removed some
std:: prefixes it added to comments.
This commit is contained in:
Tyler Veness
2025-10-28 20:17:04 -07:00
committed by GitHub
parent a6a4912a80
commit 4aef52a117
23 changed files with 38 additions and 424 deletions

View File

@@ -192,11 +192,11 @@ TEST(LinearFilterOutputTest, CentralFiniteDifference) {
AssertCentralResults<1, 3>(
[](double x) {
// f(x) = std::sin(x)
// f(x) = sin(x)
return std::sin(x);
},
[](double x) {
// df/dx = std::cos(x)
// df/dx = cos(x)
return std::cos(x);
},
h, -20.0, 20.0);
@@ -225,11 +225,11 @@ TEST(LinearFilterOutputTest, CentralFiniteDifference) {
AssertCentralResults<2, 5>(
[](double x) {
// f(x) = std::sin(x)
// f(x) = sin(x)
return std::sin(x);
},
[](double x) {
// d²f/dx² = -std::sin(x)
// d²f/dx² = -sin(x)
return -std::sin(x);
},
h, -20.0, 20.0);
@@ -265,11 +265,11 @@ TEST(LinearFilterOutputTest, BackwardFiniteDifference) {
AssertBackwardResults<1, 2>(
[](double x) {
// f(x) = std::sin(x)
// f(x) = sin(x)
return std::sin(x);
},
[](double x) {
// df/dx = std::cos(x)
// df/dx = cos(x)
return std::cos(x);
},
h, -20.0, 20.0);
@@ -298,11 +298,11 @@ TEST(LinearFilterOutputTest, BackwardFiniteDifference) {
AssertBackwardResults<2, 4>(
[](double x) {
// f(x) = std::sin(x)
// f(x) = sin(x)
return std::sin(x);
},
[](double x) {
// d²f/dx² = -std::sin(x)
// d²f/dx² = -sin(x)
return -std::sin(x);
},
h, -20.0, 20.0);