Skip to content

Commit

Permalink
[lldb] Fix NativeThreadLinux to build with older compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
labath committed Jan 19, 2022
1 parent 6ff4af8 commit 8bfa7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
Expand Up @@ -549,5 +549,5 @@ NativeThreadLinux::GetSiginfo() const {
GetProcess().GetSignalInfo(GetID(), siginfo_buf->getBufferStart());
if (!error.Success())
return error.ToError();
return siginfo_buf;
return std::move(siginfo_buf);
}

0 comments on commit 8bfa7a6

Please sign in to comment.