From 8e8c96dee051a420b4651c986d08c2470ab98d06 Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 6 Apr 2023 12:58:32 +0900 Subject: [PATCH] fix: compile error on ubuntu this fixes https://github.com/google/mediapipe/issues/3792 --- .../calculators/tensor/inference_interpreter_delegate_runner.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediapipe/calculators/tensor/inference_interpreter_delegate_runner.cc b/mediapipe/calculators/tensor/inference_interpreter_delegate_runner.cc index 28781e97a..7664547c8 100644 --- a/mediapipe/calculators/tensor/inference_interpreter_delegate_runner.cc +++ b/mediapipe/calculators/tensor/inference_interpreter_delegate_runner.cc @@ -191,7 +191,7 @@ absl::StatusOr> InferenceInterpreterDelegateRunner::Run( TfLiteTypeGetName(tensor->type))); } } - return output_tensors; + return std::move(output_tensors); } absl::StatusOr>