Skip to content

Commit ee89e69

Browse files
CppQualityCommon Botfacebook-github-bot
authored andcommitted
Fix CQS signal readability-non-const-parameter in xplat/yoga/benchmark
Reviewed By: javache Differential Revision: D96098746
1 parent 2efbfb2 commit ee89e69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmark/YGBenchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static int __compareDoubles(const void* a, const void* b) {
5050
}
5151

5252
static void
53-
__printBenchmarkResult(char* name, clock_t start, clock_t* endTimes) {
53+
__printBenchmarkResult(char* name, clock_t start, const clock_t* endTimes) {
5454
double timesInMs[NUM_REPETITIONS];
5555
double mean = 0;
5656
clock_t lastEnd = start;

0 commit comments

Comments
 (0)