[lldb-dev] [PATCH] Recent change to clang header breaks lldb
Greg Clayton
gclayton at apple.com
Mon Jan 6 11:46:42 PST 2014
Looks good.
On Jan 6, 2014, at 11:18 AM, Steve Pucci <spucci at google.com> wrote:
> A parameter to a clang method was removed from a call made by lldb (the value is determined from the context now). A fix is attached; can someone please review?
>
> Thanks,
> Steve
>
> diff --git a/source/Symbol/ClangASTType.cpp b/source/Symbol/ClangASTType.cpp
> index 0dfabcc..84a04d4 100644
> --- a/source/Symbol/ClangASTType.cpp
> +++ b/source/Symbol/ClangASTType.cpp
> @@ -1134,7 +1134,7 @@ ClangASTType::GetTypeName () const
> if (typedef_type)
> {
> const TypedefNameDecl *typedef_decl = typedef_type->getDecl();
> - type_name = typedef_decl->getQualifiedNameAsString(printing_policy);
> + type_name = typedef_decl->getQualifiedNameAsString();
> }
> else
> {
>
> _______________________________________________
> lldb-dev mailing list
> lldb-dev at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev
More information about the lldb-dev
mailing list