You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update semver.h to fix compilation error under linux (microsoft#25658)
### Description
Added the header `<cstdint>` to `semver.h`.
### Motivation and Context
Correcting compilation under linux systems, to prevent the error:
```
/xxx/onnxruntime/core/common/semver.h:18:3: error: »uint32_t« does not name a type
18 | uint32_t major{};
19 | uint32_t minor{};
20 | uint32_t patch{};
```
0 commit comments