We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3692700 + 113f3ca commit e630334Copy full SHA for e630334
‎lldb/bindings/lua/lua-typemaps.swig
@@ -247,7 +247,7 @@ LLDB_NUMBER_TYPEMAP(enum SWIGTYPE);
247
// Typemap for file handles (e.g. used in SBDebugger::GetOutputFileHandle)
248
249
%typemap(out) lldb::FileSP {
250
- lldb::FileSP &sp = $1;
+ lldb::FileSP sp = $1;
251
if (sp && sp->IsValid()) {
252
luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream));
253
p->closef = &LLDBSwigLuaCloseFileHandle;
0 commit comments