fix: compile error on ubuntu

this fixes https://github.com/google/mediapipe/issues/3792
This commit is contained in:
Luke 2023-04-06 12:58:32 +09:00
parent d5def9e24d
commit 8e8c96dee0

View File

@ -191,7 +191,7 @@ absl::StatusOr<std::vector<Tensor>> InferenceInterpreterDelegateRunner::Run(
TfLiteTypeGetName(tensor->type)));
}
}
return output_tensors;
return std::move(output_tensors);
}
absl::StatusOr<std::unique_ptr<InferenceRunner>>