From: Hubert Tong Date: Thu, 25 Jun 2020 19:41:33 +0000 (-0400) Subject: [NFC][Support] Add unit of measure to comment for PeakMemory X-Git-Tag: llvmorg-12-init~1894 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c498780526ebc07f6ba589067a65ce86a4eb2207;p=platform%2Fupstream%2Fllvm.git [NFC][Support] Add unit of measure to comment for PeakMemory --- 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.