]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Add missing #include statements
authorJoel Rosdahl <joel@rosdahl.net>
Fri, 7 Jul 2023 08:29:18 +0000 (10:29 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Fri, 7 Jul 2023 08:29:18 +0000 (10:29 +0200)
src/Depfile.cpp
src/UmaskScope.hpp
src/argprocessing.cpp
src/core/ResultRetriever.cpp
src/storage/remote/HttpStorage.cpp
src/storage/remote/RedisStorage.cpp
unittest/test_Depfile.cpp
unittest/test_ccache.cpp

index f1ef39a1df66492881828ab377f218b703cf9fd4..c85164f18674f0d29f5c371e5f278063b800387a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2022 Joel Rosdahl and other contributors
+// Copyright (C) 2020-2023 Joel Rosdahl and other contributors
 //
 // See doc/AUTHORS.adoc for a complete list of contributors.
 //
@@ -23,7 +23,9 @@
 #include "Logging.hpp"
 #include "assertions.hpp"
 
+#include <Util.hpp>
 #include <core/exceptions.hpp>
+#include <util/Tokenizer.hpp>
 #include <util/file.hpp>
 #include <util/path.hpp>
 
index d141ad30dddbf258ef8f8ddc33c7c345a1a44b1e..79113503bbb35cd7d0db21874a09bcd61b8e8ad3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2022 Joel Rosdahl and other contributors
+// Copyright (C) 2020-2023 Joel Rosdahl and other contributors
 //
 // See doc/AUTHORS.adoc for a complete list of contributors.
 //
@@ -18,6 +18,8 @@
 
 #pragma once
 
+#include <Util.hpp>
+
 #include <sys/stat.h>
 #include <sys/types.h>
 
index 7558d0a6b4385f7f9f80db07e708e336f3a609c2..9acee120dedc8a2d3c253fbc6461c97b7a2145e4 100644 (file)
@@ -26,6 +26,7 @@
 #include "language.hpp"
 
 #include <Depfile.hpp>
+#include <Util.hpp>
 #include <core/wincompat.hpp>
 #include <util/string.hpp>
 
index 0a67cdcae5dea40d052cbdb62f412eb9cc534165..8312b8f5a8165ad430a7800a4cd24495057087d2 100644 (file)
@@ -24,6 +24,7 @@
 
 #include <Context.hpp>
 #include <Stat.hpp>
+#include <Util.hpp>
 #include <core/MsvcShowIncludesOutput.hpp>
 #include <core/exceptions.hpp>
 #include <core/wincompat.hpp>
index 26c8918a2f5b0d5a5a0d6ccb635f496d1a4af328..e055de156533db7b49d99cbe12a77f2578b9e64f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2021-2022 Joel Rosdahl and other contributors
+// Copyright (C) 2021-2023 Joel Rosdahl and other contributors
 //
 // See doc/AUTHORS.adoc for a complete list of contributors.
 //
@@ -20,6 +20,7 @@
 
 #include <Digest.hpp>
 #include <Logging.hpp>
+#include <assertions.hpp>
 #include <ccache.hpp>
 #include <core/exceptions.hpp>
 #include <fmtmacros.hpp>
index e6c8ce3b64fe54a0227369f52492bb2f5a922873..5021b6b11a88783d41dcaafcae5a68856409c0c7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2021-2022 Joel Rosdahl and other contributors
+// Copyright (C) 2021-2023 Joel Rosdahl and other contributors
 //
 // See doc/AUTHORS.adoc for a complete list of contributors.
 //
@@ -20,6 +20,7 @@
 
 #include <Digest.hpp>
 #include <Logging.hpp>
+#include <assertions.hpp>
 #include <core/exceptions.hpp>
 #include <fmtmacros.hpp>
 #include <util/expected.hpp>
index 7f636e017b7be2c5c3b61ea8a72054266f3f7b3c..c7712b2dfbddaa74e52c4bcd8dc5637f364e5fd4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2020-2022 Joel Rosdahl and other contributors
+// Copyright (C) 2020-2023 Joel Rosdahl and other contributors
 //
 // See doc/AUTHORS.adoc for a complete list of contributors.
 //
@@ -21,6 +21,8 @@
 #include "../src/fmtmacros.hpp"
 #include "TestUtil.hpp"
 
+#include <Util.hpp>
+
 #include "third_party/doctest.h"
 
 using TestUtil::TestContext;
index 61671f844352d0d80faa331482c997c770c488a7..96c3dbb93d348875bf677825f282e34ac55c79e7 100644 (file)
@@ -21,6 +21,7 @@
 #include "../src/fmtmacros.hpp"
 #include "TestUtil.hpp"
 
+#include <Util.hpp>
 #include <core/wincompat.hpp>
 #include <util/file.hpp>