diff options
Diffstat (limited to 'lldb/source/Interpreter/PythonDataObjects.cpp')
-rw-r--r-- | lldb/source/Interpreter/PythonDataObjects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/PythonDataObjects.cpp b/lldb/source/Interpreter/PythonDataObjects.cpp index e5e1366629e..a581a0b3601 100644 --- a/lldb/source/Interpreter/PythonDataObjects.cpp +++ b/lldb/source/Interpreter/PythonDataObjects.cpp @@ -178,7 +178,7 @@ PythonString::GetString() const { if (m_py_obj) return llvm::StringRef(PyString_AsString(m_py_obj), GetSize()); - return nullptr; + return llvm::StringRef(); } size_t |