diff --git a/tvm-python/PyLiteClient.h b/tvm-python/PyLiteClient.h index 75ff5082a..980f384cc 100644 --- a/tvm-python/PyLiteClient.h +++ b/tvm-python/PyLiteClient.h @@ -190,7 +190,7 @@ class PyLiteClient { int send_message(PyCell& cell) { scheduler_.run_in_context_external( - [&] { send_closure(engine, &LiteClientActorEngine::send_message, std::move(cell.my_cell)); }); + [&] { send_closure(engine, &LiteClientActorEngine::send_message, cell.my_cell); }); auto response = wait_response(); if (response->success) { SuccessBufferSlice* answer = dynamic_cast(response.get());