mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-31 23:27:43 +00:00
### Description
Use onnx_protobuf.h to suppress some GCC warnings.
All the changes are autogenerated by a shell command.
```bash
find . -type f -exec sed -i 's/#include\s\+<onnx\/onnx_pb.h>/#include "core\/graph\/onnx_protobuf.h"/g' {} \;
```
### Motivation and Context
This PR is needed for making vcpkg work(without disabling all warnings)
This PR is split from another bigger PR per request from a reviewer.
|
||
|---|---|---|
| .. | ||
| basic_types.h | ||
| constants.h | ||
| function.h | ||
| graph.h | ||
| graph_nodes.h | ||
| graph_viewer.h | ||
| indexed_sub_graph.h | ||
| model_saving_options.h | ||
| node_arg.h | ||
| onnx_protobuf.h | ||
| schema_registry.h | ||