================ @@ -496,6 +496,10 @@ class SymbolFile : public PluginInterface { /// symbol file doesn't support DWO files, both counts will be 0. virtual std::pair<uint32_t, uint32_t> GetDwoFileCounts() { return {0, 0}; } + /// Calculates the count of dwo load error, return the number of dwo file with + /// errors, 0 by default. + virtual uint32_t CountDwoLoadErrors() { return 0; } + ---------------- zw3917 wrote:
Thanks for pointing this out! Just updated the implementation to use the new structure. https://github.com/llvm/llvm-project/pull/155023 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits