diff options
| author | Ebuka Ezike <yerimyah1@gmail.com> | 2025-10-29 18:22:54 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-29 18:22:54 +0000 |
| commit | d87c80bd46d9dc761b048cad48838a039cff214a (patch) | |
| tree | 7013062747948c1bad197beb9cb29efa6a5c193a /lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h | |
| parent | ba769e125b106c059321de16a760658449b02c8a (diff) | |
| download | llvm-d87c80bd46d9dc761b048cad48838a039cff214a.zip llvm-d87c80bd46d9dc761b048cad48838a039cff214a.tar.gz llvm-d87c80bd46d9dc761b048cad48838a039cff214a.tar.bz2 | |
[lldb] Do not narrow `GetIndexOfChildWithName` return type to int (#165453)
Modify the python wrapper to return uint32_t,
which prevents incorrect child name-to-index mapping and avoids
performing redundant operations on non-existent SBValues.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h')
| -rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h b/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h index 7b39d29..27f5d2e 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/SWIGPythonBridge.h @@ -158,8 +158,9 @@ public: static PyObject *LLDBSwigPython_GetChildAtIndex(PyObject *implementor, uint32_t idx); - static int LLDBSwigPython_GetIndexOfChildWithName(PyObject *implementor, - const char *child_name); + static uint32_t + LLDBSwigPython_GetIndexOfChildWithName(PyObject *implementor, + const char *child_name); static lldb::ValueObjectSP LLDBSWIGPython_GetValueObjectSPFromSBValue(void *data); |
