From 022b666263d5e11134e57abfc66a9e877574219f Mon Sep 17 00:00:00 2001 From: Scott McKay Date: Tue, 23 Jul 2024 09:54:53 +1000 Subject: [PATCH] comment --- .../coreml/builders/impl/convtranspose_op_builder.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/onnxruntime/core/providers/coreml/builders/impl/convtranspose_op_builder.cc b/onnxruntime/core/providers/coreml/builders/impl/convtranspose_op_builder.cc index eca996597f76d..5b6d9d72ab3c9 100644 --- a/onnxruntime/core/providers/coreml/builders/impl/convtranspose_op_builder.cc +++ b/onnxruntime/core/providers/coreml/builders/impl/convtranspose_op_builder.cc @@ -30,8 +30,8 @@ Status ConvTransposeOpBuilder::AddToModelBuilderImpl([[maybe_unused]] ModelBuild const logging::Logger& /*logger*/) const { #if defined(COREML_ENABLE_MLPROGRAM) using namespace CoreML::Specification::MILSpec; // NOLINT - const auto& input_defs = node.InputDefs(); - const auto& output_defs = node.OutputDefs(); + const auto input_defs = node.InputDefs(); + const auto output_defs = node.OutputDefs(); const auto& input_name = input_defs[0]->Name(); NodeAttrHelper helper(node);