From 7e175070fd3e2eef2afa3ed9fdcba1dda6f4bc34 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Thu, 6 Jul 2023 06:49:02 -0700 Subject: [PATCH] Fix windows build --- ortools/algorithms/set_cover_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ortools/algorithms/set_cover_utils.h b/ortools/algorithms/set_cover_utils.h index 3acb02a312e..6e3cd1684ec 100644 --- a/ortools/algorithms/set_cover_utils.h +++ b/ortools/algorithms/set_cover_utils.h @@ -89,7 +89,7 @@ class SubsetPriorityQueue { } // Returns the size of the queue. - ssize_t Size() const { return max_pq_.Size(); } + int Size() const { return max_pq_.Size(); } private: // Initializes the priority queue.