From c498780526ebc07f6ba589067a65ce86a4eb2207 Mon Sep 17 00:00:00 2001 From: Hubert Tong Date: Thu, 25 Jun 2020 15:41:33 -0400 Subject: [PATCH] [NFC][Support] Add unit of measure to comment for PeakMemory --- llvm/include/llvm/Support/Program.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/Program.h b/llvm/include/llvm/Support/Program.h index ce0b6db..dbda064 100644 --- a/llvm/include/llvm/Support/Program.h +++ b/llvm/include/llvm/Support/Program.h @@ -57,7 +57,7 @@ namespace sys { struct ProcessStatistics { std::chrono::microseconds TotalTime; std::chrono::microseconds UserTime; - uint64_t PeakMemory = 0; + uint64_t PeakMemory = 0; ///< Maximum resident set size in KiB. }; /// Find the first executable file \p Name in \p Paths. -- 2.7.4