mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
### Description
Run clang-format in CI. Formatted all c/c++, objective-c/c++ files.
Excluded
```
'onnxruntime/core/mlas/**',
'onnxruntime/contrib_ops/cuda/bert/tensorrt_fused_multihead_attention/**',
```
because they contain assembly or is data heavy
### Motivation and Context
Coding style consistency
11 lines
445 B
C++
11 lines
445 B
C++
#pragma once
|
|
// Part of the standard C runtime and the STL are missing when targeting UWP, and some applications that rely on standard,
|
|
// cross-platform headers fail to build.
|
|
// Here we provide stubs for functions required by some onnxruntime dependencies.
|
|
#ifdef __cplusplus
|
|
// Extending the std namespace is undefined behavior
|
|
// NOLINTNEXTLINE
|
|
namespace std {
|
|
inline char* getenv(const char*) { return nullptr; }
|
|
} // namespace std
|
|
#endif
|