Add comments to make sure it is clear scale is an exponent of 10

This commit is contained in:
Scott Ashcroft
2026-04-23 17:22:14 +01:00
committed by stashcroft
parent e69341cd5f
commit 23a05fcf35
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ static const std::map<std::string, int> g_units =
struct scaled_time {
uint64_t time;
int scale;
int scale; // exponent of 10, e.g. -6 = us, -9 = ns
bool end;
};