From 8ea0c463b344b8adb776c3e0c48224ea1d7ea7a7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 28 Sep 2025 18:21:15 +0200 Subject: Fix Windows build. --- src/lib/layout_markers.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/layout_markers.cc b/src/lib/layout_markers.cc index 7b16b07f1..4e52df9ca 100644 --- a/src/lib/layout_markers.cc +++ b/src/lib/layout_markers.cc @@ -148,7 +148,7 @@ AllocationRow::allocate(int x1, int x2) return max(a.first, b.first) <= min(a.second, b.second); }; - if (std::none_of(_allocated.begin(), _allocated.end(), std::bind(overlaps, pair{x1, x2}, _1))) { + if (std::none_of(_allocated.begin(), _allocated.end(), std::bind(overlaps, pair{x1, x2}, _1))) { _allocated.push_back({x1, x2}); return true; } -- cgit v1.2.3