Skip to content

Commit 7b8e686

Browse files
committed
[lldb] Fix build failure introduced by f22d82c
Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent ca3545f commit 7b8e686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ScriptedPythonInterface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class ScriptedPythonInterface : virtual public ScriptedInterface {
110110
transformed_args);
111111

112112
if (llvm::Error e = expected_return_object.takeError())
113-
return e;
113+
return std::move(e);
114114
result = std::move(expected_return_object.get());
115115
}
116116

0 commit comments

Comments
 (0)