[Lldb-commits] [lldb] Add `SBModule.SetLocateDwoCallback` (PR #69517)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 18 19:25:48 PDT 2023
================
@@ -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
More information about the lldb-commits
mailing list