diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2021-07-17 16:55:51 +0100 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2021-07-17 16:56:06 +0100 |
commit | 9277ce79328cb607656a08097559ff22447f2e70 (patch) | |
tree | 97d248e53c879d99e969afb00f7ba96aa4cc702f /llvm/lib/DebugInfo/CodeView/CodeViewError.cpp | |
parent | 5df48493f08930ad05d9746c65fd53e5131a08d0 (diff) | |
download | llvm-9277ce79328cb607656a08097559ff22447f2e70.zip llvm-9277ce79328cb607656a08097559ff22447f2e70.tar.gz llvm-9277ce79328cb607656a08097559ff22447f2e70.tar.bz2 |
[DebugInfo] Remove unnecessary <string> include dependency from DebugInfo headers. NFC.
At most these use the StringRef/Twine wrappers and don't have any implicit uses of std::string.
Move the include down to any cpp implementation where std::string is actually used.
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/CodeViewError.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/CodeViewError.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp b/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp index 69390c7..d12f6c7 100644 --- a/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp +++ b/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp @@ -9,6 +9,7 @@ #include "llvm/DebugInfo/CodeView/CodeViewError.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ManagedStatic.h" +#include <string> using namespace llvm; using namespace llvm::codeview; |