[lldb] Add missing StringExtras.h includes
authorElliot Goodrich <elliotgoodrich@gmail.com>
Tue, 11 Jul 2023 21:06:47 +0000 (22:06 +0100)
committerElliot Goodrich <elliotgoodrich@gmail.com>
Thu, 13 Jul 2023 07:39:59 +0000 (08:39 +0100)
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.

This is fixing all files missed in b0abd4893fa139d8e6e22cd1,
a11efd49266f, and 5551657b310b.

Differential Revision: https://reviews.llvm.org/D155018

lldb/tools/lldb-vscode/VSCode.cpp

index b1c6817c2128b9b4f25543687ac737637a3d1e3e..bc6129c541d49ebfaef2524ac251833571c1d046 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "LLDBUtils.h"
 #include "VSCode.h"
+#include "llvm/ADT/StringExtras.h"
 #include "llvm/Support/FormatVariadic.h"
 
 #if defined(_WIN32)