================ @@ -475,6 +484,8 @@ class SymbolFile : public PluginInterface { private: SymbolFile(const SymbolFile &) = delete; const SymbolFile &operator=(const SymbolFile &) = delete; + + static LocateDwoCallback LOCATE_DWO_CALLBACK; ---------------- clayborg wrote:
static variable are named starting with "s_" and then use lowercase separated by _. So this should be: ``` static LocateDwoCallback s_locate_dwo_callback; ``` https://github.com/llvm/llvm-project/pull/69517 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits