From ee89e6950f4485c65e0771877ecb7567eb5adc27 Mon Sep 17 00:00:00 2001 From: CppQualityCommon Bot Date: Wed, 11 Mar 2026 07:59:15 -0700 Subject: [PATCH] Fix CQS signal readability-non-const-parameter in xplat/yoga/benchmark Reviewed By: javache Differential Revision: D96098746 --- benchmark/YGBenchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/YGBenchmark.c b/benchmark/YGBenchmark.c index 384c539244..f83b36d0ea 100644 --- a/benchmark/YGBenchmark.c +++ b/benchmark/YGBenchmark.c @@ -50,7 +50,7 @@ static int __compareDoubles(const void* a, const void* b) { } static void -__printBenchmarkResult(char* name, clock_t start, clock_t* endTimes) { +__printBenchmarkResult(char* name, clock_t start, const clock_t* endTimes) { double timesInMs[NUM_REPETITIONS]; double mean = 0; clock_t lastEnd = start;