summaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
diff options
context:
space:
mode:
authorAlex Langford <alangford@apple.com>2023-05-17 12:50:36 -0700
committerAlex Langford <alangford@apple.com>2023-05-17 12:51:36 -0700
commit147a61618989b6cca1f5f77ed96f930620ff193f (patch)
tree8dd4aea7f1886e08c036092cb3e47fb51281af3b /lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
parenta825f3754b3ca1591068cf99bc224af30a311e63 (diff)
downloadllvm-147a61618989b6cca1f5f77ed96f930620ff193f.tar.gz
[lldb][NFCI] Move ThreadSafeDenseMap to Utility
This seems better suited for Utility than Core
Diffstat (limited to 'lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp')
-rw-r--r--lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
index 15747136d59c..1a648de721ea 100644
--- a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+++ b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -57,7 +57,6 @@
#include "lldb/Core/Module.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Core/StreamFile.h"
-#include "lldb/Core/ThreadSafeDenseMap.h"
#include "lldb/Core/UniqueCStringMap.h"
#include "lldb/Symbol/ObjectFile.h"
#include "lldb/Symbol/SymbolFile.h"
@@ -72,6 +71,7 @@
#include "lldb/Utility/LLDBLog.h"
#include "lldb/Utility/RegularExpression.h"
#include "lldb/Utility/Scalar.h"
+#include "lldb/Utility/ThreadSafeDenseMap.h"
#include "Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h"
#include "Plugins/SymbolFile/DWARF/DWARFASTParserClang.h"