diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-13 11:51:57 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:06 +0100 |
commit | 3bc1d8aa17339154c9de88e7ee29ff533041cb6d (patch) | |
tree | 69175e46761c9743afaa418a18721c4f5d4d9f81 /src/other_tools/just_mr/setup_utils.cpp | |
parent | 4d92254c43e96f0c9f751b7fef1fcbf7bfc533b1 (diff) | |
download | justbuild-3bc1d8aa17339154c9de88e7ee29ff533041cb6d.tar.gz |
other_tools/just_mr: Implement IWYU suggestions
Diffstat (limited to 'src/other_tools/just_mr/setup_utils.cpp')
-rw-r--r-- | src/other_tools/just_mr/setup_utils.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/other_tools/just_mr/setup_utils.cpp b/src/other_tools/just_mr/setup_utils.cpp index 777343f5..d7dc6e5d 100644 --- a/src/other_tools/just_mr/setup_utils.cpp +++ b/src/other_tools/just_mr/setup_utils.cpp @@ -15,8 +15,12 @@ #include "src/other_tools/just_mr/setup_utils.hpp" #include <algorithm> +#include <cstdlib> +#include <exception> #include <fstream> +#include <iterator> #include <unordered_set> +#include <utility> #include <variant> #include "nlohmann/json.hpp" @@ -26,6 +30,7 @@ #include "src/buildtool/logging/log_level.hpp" #include "src/buildtool/logging/logger.hpp" #include "src/other_tools/just_mr/exit_codes.hpp" +#include "src/utils/cpp/expected.hpp" namespace { |