[Lldb-commits] [PATCH] D138259: Add the ability to see when a type in incomplete.
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Nov 18 20:00:06 PST 2022
aprantl added a comment.
Generally, I think this can be useful information. I don't have any better suggestion, but I'd like to ask the room if we think that `<incomplete type>` is a good message for the end users. (`Forward-declared type`, `type missing from debug info`, ...?)
================
Comment at: lldb/source/Core/ValueObject.cpp:601
+ if (GetCompilerType().IsForcefullyCompleted()) {
+ destination = "<incomplete type>";
+ return true;
----------------
I don't ha
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138259/new/
https://reviews.llvm.org/D138259
More information about the lldb-commits
mailing list