[Lldb-commits] [lldb] [lldb] Add count for errors of DWO files in statistics and combine DWO file count functions (PR #155023)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 28 22:25:10 PDT 2025
================
@@ -612,21 +616,20 @@ class SymbolFileCommon : public SymbolFile {
const CompilerType &compiler_qual_type,
Type::ResolveState compiler_type_resolve_state,
uint32_t opaque_payload = 0) override {
- lldb::TypeSP type_sp (new Type(
- uid, this, name, byte_size, context, encoding_uid,
- encoding_uid_type, decl, compiler_qual_type,
- compiler_type_resolve_state, opaque_payload));
- m_type_list.Insert(type_sp);
- return type_sp;
+ lldb::TypeSP type_sp(new Type(
+ uid, this, name, byte_size, context, encoding_uid, encoding_uid_type,
+ decl, compiler_qual_type, compiler_type_resolve_state, opaque_payload));
+ m_type_list.Insert(type_sp);
+ return type_sp;
----------------
clayborg wrote:
Ditto (revert auto clang-format changes for stuff that isn't associated with this PR).
https://github.com/llvm/llvm-project/pull/155023
More information about the lldb-commits
mailing list