Lunderberg opened a new pull request, #14529: URL: https://github.com/apache/tvm/pull/14529
Prior to this commit, the `TVMAotExecutor_GetInputName` function accepted a `char** name` output parameter. When used, assignment of a `const char*` into `*name` dropped the `const`, resulting in a warning. Changing the argument type to `const char**` (pointer to a mutable pointer to a `const char`) resolves this warning. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
