[clangd][NFC] includes missing headers
authorChristopher Di Bella <cjdb@google.com>
Tue, 15 Feb 2022 04:44:51 +0000 (04:44 +0000)
committerChristopher Di Bella <cjdb@google.com>
Tue, 15 Feb 2022 17:44:47 +0000 (17:44 +0000)
`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

clang-tools-extra/clangd/support/Shutdown.h

index 896e152..e295576 100644 (file)
@@ -45,6 +45,8 @@
 
 #include <cerrno>
 #include <chrono>
+#include <type_traits>
+#include <utility>
 
 namespace clang {
 namespace clangd {