microsoft / onnxruntime-extensions

onnxruntime-extensions: A specialized pre- and post- processing library for ONNX Runtime
MIT License
295 stars 80 forks source link

Fix C4459 warning in custom_op_lite.h #751

Closed skyline75489 closed 1 week ago

skyline75489 commented 1 week ago

Fix C4459: declaration of 'api' hides global declaration.

The existing api is Ort::api defined in onnxruntime_api.h. Renaming the parameter name to avoid collision.

skyline75489 commented 1 week ago

The CI is green. I think it's ready.