[Lldb-commits] [PATCH] D31880: Fix libc++ vector<bool> data formatter (bug #32553)
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 11 05:50:52 PDT 2017
labath marked 3 inline comments as done.
labath added inline comments.
================
Comment at: source/Plugins/Language/CPlusPlus/LibCxxVector.cpp:301-304
+ TypeImpl type = valobj_sp->GetTypeImpl();
+ if (!type.IsValid())
+ return nullptr;
+ CompilerType compiler_type = type.GetCompilerType(false);
----------------
tberghammer wrote:
> Is there a reason you are not using ValueObject::GetCompilerType()?
Because I did not know it exists. :)
https://reviews.llvm.org/D31880
More information about the lldb-commits
mailing list