From 277be6dd08633dbebfda93afdfc6b5cb57e053e0 Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Mon, 8 Apr 2024 13:18:22 +0200 Subject: Use properly included standard library types by default --- src/buildtool/multithreading/async_map.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/buildtool/multithreading/async_map.hpp') diff --git a/src/buildtool/multithreading/async_map.hpp b/src/buildtool/multithreading/async_map.hpp index 41e7dded..e9bdd603 100644 --- a/src/buildtool/multithreading/async_map.hpp +++ b/src/buildtool/multithreading/async_map.hpp @@ -57,7 +57,7 @@ class AsyncMap { [[nodiscard]] auto GetPendingKeys() const -> std::vector { std::vector keys{}; - size_t s = 0; + std::size_t s = 0; for (auto& i : map_) { s += i.size(); } -- cgit v1.2.3