diff options
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index e9f05ea4ec7..a46bcbf72fb 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1551,7 +1551,7 @@ Debugger::FormatPrompt } // TODO use flags for these - bool is_array = ClangASTContext::IsArrayType(target->GetClangType()); + bool is_array = ClangASTContext::IsArrayType(target->GetClangType(), NULL, NULL, NULL); bool is_pointer = ClangASTContext::IsPointerType(target->GetClangType()); bool is_aggregate = ClangASTContext::IsAggregateType(target->GetClangType()); |