diff options
author | serge-sans-paille <sguelton@redhat.com> | 2022-01-26 02:50:00 -0500 |
---|---|---|
committer | serge-sans-paille <sguelton@redhat.com> | 2022-01-26 11:16:15 +0100 |
commit | 66c602be25c15ca69f6c3a618427ba0237c0d4a9 (patch) | |
tree | dbdb1c1af81a5f2508590f76599983de41e21816 /llvm/lib/Support/BinaryStreamError.cpp | |
parent | 44cfc3a8169cfa3f6a2824ed9cee9ff269f5a8ea (diff) | |
download | llvm-66c602be25c15ca69f6c3a618427ba0237c0d4a9.zip llvm-66c602be25c15ca69f6c3a618427ba0237c0d4a9.tar.gz llvm-66c602be25c15ca69f6c3a618427ba0237c0d4a9.tar.bz2 |
[NFC] Additional header dependency cleanup LLVMSupport
A few more forward-declarations, a few less headers. the impact on number of
preprocessed lines for LLVMSupport is negligible (-3K lines) but it's always
good to remove dependencies.
Related discourse thread: https://llvm.discourse.group/t/include-what-you-use-include-cleanup
Diffstat (limited to 'llvm/lib/Support/BinaryStreamError.cpp')
-rw-r--r-- | llvm/lib/Support/BinaryStreamError.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/BinaryStreamError.cpp b/llvm/lib/Support/BinaryStreamError.cpp index f22523f..9b8f686 100644 --- a/llvm/lib/Support/BinaryStreamError.cpp +++ b/llvm/lib/Support/BinaryStreamError.cpp @@ -7,7 +7,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/BinaryStreamError.h" -#include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/raw_ostream.h" using namespace llvm; |