From 33e883fbc47474fb38524a43c736b52c170ea2b3 Mon Sep 17 00:00:00 2001 From: Yi-Hong Lyu Date: Tue, 30 Apr 2024 11:45:03 -0700 Subject: [PATCH] Fix the doxygen error (#20515) Fix onnxruntime/include/onnxruntime/core/session/onnxruntime_c_api.h:4637: error: argument 'session' of command @param is not found in the argument list of ``` OrtApi::AddExternalInitializersFromFilesInMemory( OrtSessionOptions *options, const char *const *external_initializer_file_names, char *const *external_initializer_file_buffer_array, const size_t *external_initializer_file_lengths, size_t num_external_initializer_files) ``` --- include/onnxruntime/core/session/onnxruntime_c_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/onnxruntime/core/session/onnxruntime_c_api.h b/include/onnxruntime/core/session/onnxruntime_c_api.h index 737941317a..a11bd410c5 100644 --- a/include/onnxruntime/core/session/onnxruntime_c_api.h +++ b/include/onnxruntime/core/session/onnxruntime_c_api.h @@ -4641,7 +4641,7 @@ struct OrtApi { * will occur before any of the optimizations take place. The data will be copied into the graph * since TensorProto can't refer to the user provided buffers. * - * \param[in] session options + * \param[in] options * \param[in] external_initializer_file_names Array of null terminated UTF-8 encoded strings of the file names * which holds the external initializers. * \param[in] external_initializer_file_buffer_array Array of pointers to the buffer of the file content.