summaryrefslogtreecommitdiffstats
path: root/lldb/source/DataFormatters/NSIndexPath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/DataFormatters/NSIndexPath.cpp')
-rw-r--r--lldb/source/DataFormatters/NSIndexPath.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/DataFormatters/NSIndexPath.cpp b/lldb/source/DataFormatters/NSIndexPath.cpp
index 4d6f2c50451..60768b1d15d 100644
--- a/lldb/source/DataFormatters/NSIndexPath.cpp
+++ b/lldb/source/DataFormatters/NSIndexPath.cpp
@@ -179,7 +179,7 @@ protected:
}
lldb::ValueObjectSP
- GetIndexAtIndex (size_t idx, const ClangASTType& desired_type)
+ GetIndexAtIndex (size_t idx, const CompilerType& desired_type)
{
if (idx >= GetNumIndexes())
return nullptr;
@@ -209,7 +209,7 @@ protected:
}
lldb::ValueObjectSP
- GetIndexAtIndex (size_t idx, const ClangASTType& desired_type)
+ GetIndexAtIndex (size_t idx, const CompilerType& desired_type)
{
std::pair<uint64_t, bool> value(_indexAtPositionForInlinePayload(idx));
if (!value.second)
@@ -325,7 +325,7 @@ protected:
uint32_t m_ptr_size;
ClangASTContext* m_ast_ctx;
- ClangASTType m_uint_star_type;
+ CompilerType m_uint_star_type;
};
namespace lldb_private {
OpenPOWER on IntegriCloud