mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
update onnxruntime_c_api.h (#20360)
### Description removing excess trailing semicolon from specific macro ### Motivation and Context I am preparing automatic generation of onnxruntime bindings for perl, and the parser (ucpp) has broken due to the "double semicolon" error in the subsequent lines where the macro is applied.
This commit is contained in:
parent
a7fc0e8370
commit
5c3a1bc3b8
1 changed files with 1 additions and 1 deletions
|
|
@ -267,7 +267,7 @@ typedef enum OrtOpAttrType {
|
|||
//! @}
|
||||
#define ORT_RUNTIME_CLASS(X) \
|
||||
struct Ort##X; \
|
||||
typedef struct Ort##X Ort##X;
|
||||
typedef struct Ort##X Ort##X
|
||||
|
||||
/** \addtogroup Global
|
||||
* ONNX Runtime C API
|
||||
|
|
|
|||
Loading…
Reference in a new issue