diff options
author | Elliot Goodrich <elliotgoodrich@gmail.com> | 2023-06-17 13:18:23 +0100 |
---|---|---|
committer | Elliot Goodrich <elliotgoodrich@gmail.com> | 2023-06-25 15:42:22 +0100 |
commit | b0abd4893fa1bfae7f71b6b6e98770c9b1c07620 (patch) | |
tree | c04daf799bf06a2eafd6daac90b12d09b778be88 /clang/tools/driver/cc1as_main.cpp | |
parent | 54210573ae918f6e0cab59bc5955a66bc34b5f6c (diff) | |
download | llvm-b0abd4893fa1bfae7f71b6b6e98770c9b1c07620.zip llvm-b0abd4893fa1bfae7f71b6b6e98770c9b1c07620.tar.gz llvm-b0abd4893fa1bfae7f71b6b6e98770c9b1c07620.tar.bz2 |
[llvm] Add missing StringExtras.h includes
In preparation for removing the `#include "llvm/ADT/StringExtras.h"`
from the header to source file of `llvm/Support/Error.h`, first add in
all the missing includes that were previously included transitively
through this header.
Diffstat (limited to 'clang/tools/driver/cc1as_main.cpp')
-rw-r--r-- | clang/tools/driver/cc1as_main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/tools/driver/cc1as_main.cpp b/clang/tools/driver/cc1as_main.cpp index 08b453d..3c59260 100644 --- a/clang/tools/driver/cc1as_main.cpp +++ b/clang/tools/driver/cc1as_main.cpp @@ -19,6 +19,7 @@ #include "clang/Frontend/TextDiagnosticPrinter.h" #include "clang/Frontend/Utils.h" #include "llvm/ADT/STLExtras.h" +#include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringSwitch.h" #include "llvm/IR/DataLayout.h" #include "llvm/MC/MCAsmBackend.h" |