From d15ecef7069127a5450130c1eab8c7f01d7ee2e1 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 21 Nov 2021 17:18:42 -0800 Subject: [PATCH] small whitespace fix Just because QtCreator auto-fixed it for me... Signed-off-by: Dirk Hohndel --- stats/statsvariables.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stats/statsvariables.cpp b/stats/statsvariables.cpp index 7349c15dd..9042f5535 100644 --- a/stats/statsvariables.cpp +++ b/stats/statsvariables.cpp @@ -606,7 +606,7 @@ template auto pair_lower_bound(std::vector> &v, const T1 &value) { return std::lower_bound(v.begin(), v.end(), value, - [] (const std::pair &entry, const T1 &value) { + [] (const std::pair &entry, const T1 &value) { return entry.first < value; }); }