Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Di Bella <cjdb@google.com>2022-02-15 07:44:51 +0300
committerChristopher Di Bella <cjdb@google.com>2022-02-15 20:44:47 +0300
commitd7b1c840ba4e1f8c04fe1c5455242629893c7e3a (patch)
tree68a95317fc8347e9bd4468e3d40c284a1549e842 /clang-tools-extra
parent49ff418ed5cf0c74e1e92ca85037c7e214318536 (diff)
[clangd][NFC] includes missing headers
`Shutdown.h` was transitively depending on two headers, but this isn't allowed under a modules build, so they're now explicitly included. Differential Revision: https://reviews.llvm.org/D119806
Diffstat (limited to 'clang-tools-extra')
-rw-r--r--clang-tools-extra/clangd/support/Shutdown.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/clang-tools-extra/clangd/support/Shutdown.h b/clang-tools-extra/clangd/support/Shutdown.h
index 896e1521fe6a..e295576c1fda 100644
--- a/clang-tools-extra/clangd/support/Shutdown.h
+++ b/clang-tools-extra/clangd/support/Shutdown.h
@@ -45,6 +45,8 @@
#include <cerrno>
#include <chrono>
+#include <type_traits>
+#include <utility>
namespace clang {
namespace clangd {