diff options
| author | Konstantin <const@const.me> | 2023-01-24 18:30:01 +0100 |
|---|---|---|
| committer | Konstantin <const@const.me> | 2023-01-24 18:30:01 +0100 |
| commit | e8ff6c541c918544f72dfdf1100f9d3ac3558185 (patch) | |
| tree | 05ea0d814c59b1cf6f5e30b7ea9716f279597403 /Tools | |
| parent | 993cfa55dcae112822a2e9681056e49697d71338 (diff) | |
Minor, performance summary tool
Diffstat (limited to 'Tools')
| -rw-r--r-- | Tools/PerfSummary/Summary.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/PerfSummary/Summary.cs b/Tools/PerfSummary/Summary.cs index 8cea958..0518de6 100644 --- a/Tools/PerfSummary/Summary.cs +++ b/Tools/PerfSummary/Summary.cs @@ -54,7 +54,7 @@ namespace PerfSummary } double rel = duration / log.runComplete; - return rel.print(); + return rel.ToString( "F4", CultureInfo.InvariantCulture ); } static string clip( this LogData log ) |
