Update C++ API comment to resolve warning. (#7776)

This commit is contained in:
Edward Chen 2021-05-21 13:12:13 -07:00 committed by GitHub
parent 1fbc04d691
commit b5c5e8c1ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -569,7 +569,6 @@ struct ArenaCfg : Base<OrtArenaCfg> {
* \param arena_extend_strategy - use -1 to allow ORT to choose the default, 0 = kNextPowerOfTwo, 1 = kSameAsRequested
* \param initial_chunk_size_bytes - use -1 to allow ORT to choose the default
* \param max_dead_bytes_per_chunk - use -1 to allow ORT to choose the default
* \return an instance of ArenaCfg
* See docs/C_API.md for details on what the following parameters mean and how to choose these values
*/
ArenaCfg(size_t max_mem, int arena_extend_strategy, int initial_chunk_size_bytes, int max_dead_bytes_per_chunk);