From 3a5653af1cf7cacd01918adb19d8eded2e002593 Mon Sep 17 00:00:00 2001 From: Edward Lemur Date: Thu, 25 Jan 2018 17:59:55 +0100 Subject: [PATCH] Use FILE* instead of const FILE* in perf_test.h TBR=phoglund@webrtc.org Bug: chromium:755660 Change-Id: I5e4c808668c8a376d4bd518236ae969c693f979b Reviewed-on: https://webrtc-review.googlesource.com/43960 Reviewed-by: Edward Lemur Commit-Queue: Edward Lemur Cr-Commit-Position: refs/heads/master@{#21765} --- test/testsupport/perf_test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsupport/perf_test.h b/test/testsupport/perf_test.h index fbc1ef94c3..4f718bb5e7 100644 --- a/test/testsupport/perf_test.h +++ b/test/testsupport/perf_test.h @@ -71,7 +71,7 @@ void WritePerfResults(const std::string& output_path); // By default, perf results are printed to stdout. Set the FILE* to where they // should be printing instead. -void SetPerfResultsOutput(const FILE* output); +void SetPerfResultsOutput(FILE* output); // You shouldn't use this function. It's only used to test the functions above. void ClearPerfResults();