[lldb] Appease the MSCV compiler

Fix error C2027: use of undefined type 'llvm::MemoryBuffer'.
This commit is contained in:
Jonas Devlieghere 2022-09-19 17:36:19 -07:00
parent a1df13ecd6
commit d3a536fa93
No known key found for this signature in database
GPG Key ID: 49CC0BD90FDEED4D
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,8 @@
#include "llvm/ADT/DenseMap.h"
#include "llvm/Support/CachePruning.h"
#include "llvm/Support/Caching.h"
#include "llvm/Support/MemoryBuffer.h"
#include <mutex>
namespace lldb_private {

View File

@ -15,7 +15,6 @@
#include "lldb/Utility/LLDBLog.h"
#include "lldb/Utility/Log.h"
#include "llvm/Support/CachePruning.h"
#include "llvm/Support/MemoryBuffer.h"
using namespace lldb_private;