diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-04-08 13:18:22 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-04-08 15:19:50 +0200 |
commit | 277be6dd08633dbebfda93afdfc6b5cb57e053e0 (patch) | |
tree | 6c86157c7f93636459361264054753a1dc9d33e9 /src/buildtool/multithreading/async_map.hpp | |
parent | 419a458ad9d4383eb47d51fe8e4408a0e240c2f1 (diff) | |
download | justbuild-277be6dd08633dbebfda93afdfc6b5cb57e053e0.tar.gz |
Use properly included standard library types by default
Diffstat (limited to 'src/buildtool/multithreading/async_map.hpp')
-rw-r--r-- | src/buildtool/multithreading/async_map.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<KeyT> { std::vector<KeyT> keys{}; - size_t s = 0; + std::size_t s = 0; for (auto& i : map_) { s += i.size(); } |