From 791d88ac47891d1ab4b2b0a4e9c43d392f4aa826 Mon Sep 17 00:00:00 2001 From: monosans Date: Thu, 30 Apr 2026 17:53:28 +0300 Subject: [PATCH] fix: remove unnecessary blank line in Run-One function --- .github/scripts/allocator_bench_windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/allocator_bench_windows.ps1 b/.github/scripts/allocator_bench_windows.ps1 index 9f1da6c..6575686 100644 --- a/.github/scripts/allocator_bench_windows.ps1 +++ b/.github/scripts/allocator_bench_windows.ps1 @@ -29,7 +29,7 @@ function Run-One([string]$allocator, [string]$features) { $p = Get-Process -Id $proc.Id -ErrorAction Stop $current = [math]::Max($p.WorkingSet64, $p.PeakWorkingSet64) if ($current -gt $peak) { $peak = $current } - + $wmi = Get-CimInstance Win32_Process -Filter "ProcessId=$($proc.Id)" -ErrorAction SilentlyContinue if ($wmi -and $wmi.PageFaults -gt $faults) { $faults = $wmi.PageFaults } } catch { }