diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-07 15:27:18 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:05 +0100 |
commit | 5ffc62e1df6a85cc4e2874e80fe73919ef75b0df (patch) | |
tree | 78c0ee517fba81088c323980a1b08df1f9af285d /src/buildtool/auth/authentication.hpp | |
parent | faba5b7d385311f08d421ee99511912b55f7582f (diff) | |
download | justbuild-5ffc62e1df6a85cc4e2874e80fe73919ef75b0df.tar.gz |
auth: Implement IWYU suggestions
Diffstat (limited to 'src/buildtool/auth/authentication.hpp')
-rw-r--r-- | src/buildtool/auth/authentication.hpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/buildtool/auth/authentication.hpp b/src/buildtool/auth/authentication.hpp index ace2e60d..24c0cf93 100644 --- a/src/buildtool/auth/authentication.hpp +++ b/src/buildtool/auth/authentication.hpp @@ -15,17 +15,18 @@ #ifndef INCLUDED_SRC_BUILDTOOL_AUTH_AUTHENTICATION_HPP #define INCLUDED_SRC_BUILDTOOL_AUTH_AUTHENTICATION_HPP -#include <cerrno> // for errno -#include <cstdint> +#include <cerrno> // for errno #include <cstring> // for strerror() +#include <exception> #include <filesystem> #include <fstream> +#include <iterator> #include <optional> -#include <streambuf> #include <string> #include <utility> +#include <variant> -#include "gsl/gsl" +#include "fmt/core.h" #include "src/buildtool/logging/log_level.hpp" #include "src/buildtool/logging/logger.hpp" #include "src/utils/cpp/expected.hpp" |