From fcabff5702fd00d575f1f214bf9b6ced037be53b Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Tue, 26 Mar 2024 18:58:55 +0100 Subject: Add missing system includes Main culprits: - std::size_t, std::nullptr_t, and NULL require - std::move and std::forward require - unordered maps and sets require respective includes - std::for_each and std::all_of require --- src/other_tools/repo_map/repos_to_setup_map.cpp | 3 +++ src/other_tools/repo_map/repos_to_setup_map.hpp | 1 + 2 files changed, 4 insertions(+) (limited to 'src/other_tools/repo_map') diff --git a/src/other_tools/repo_map/repos_to_setup_map.cpp b/src/other_tools/repo_map/repos_to_setup_map.cpp index df7eebb0..7ccb73d9 100644 --- a/src/other_tools/repo_map/repos_to_setup_map.cpp +++ b/src/other_tools/repo_map/repos_to_setup_map.cpp @@ -14,6 +14,9 @@ #include "src/other_tools/repo_map/repos_to_setup_map.hpp" +#include +#include // std::move + #include "fmt/core.h" #include "src/buildtool/file_system/file_root.hpp" #include "src/buildtool/file_system/symlinks_map/pragma_special.hpp" diff --git a/src/other_tools/repo_map/repos_to_setup_map.hpp b/src/other_tools/repo_map/repos_to_setup_map.hpp index 4cf992e8..64bec13a 100644 --- a/src/other_tools/repo_map/repos_to_setup_map.hpp +++ b/src/other_tools/repo_map/repos_to_setup_map.hpp @@ -15,6 +15,7 @@ #ifndef INCLUDED_SRC_OTHER_TOOLS_REPO_MAP_REPOS_TO_SETUP_MAP_HPP #define INCLUDED_SRC_OTHER_TOOLS_REPO_MAP_REPOS_TO_SETUP_MAP_HPP +#include #include #include #include -- cgit v1.2.3