[clangd][iwyu] explicitly includes `<atomic>`

Compiling clangd with Clang modules and libc++ revealed that
`support/Threading.h` uses `std::atomic` but wasn't including the
correct header.

Differential Revision: https://reviews.llvm.org/D105400
This commit is contained in:
Christopher Di Bella 2021-07-04 02:17:43 +00:00
parent c558b1fca7
commit 478092d331
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@
#include "support/Context.h"
#include "llvm/ADT/FunctionExtras.h"
#include "llvm/ADT/Twine.h"
#include <atomic>
#include <cassert>
#include <condition_variable>
#include <future>