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:
vividsnow 2024-05-01 02:47:24 +03:00 committed by GitHub
parent a7fc0e8370
commit 5c3a1bc3b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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