onnxruntime/include
cloudhan 2cf5d04e3d
Fix clang-tidy(cppcoreguidelines-pro-bounds-array-to-pointer-decay) (#13241)
clang-tidy says "Do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead"

It is a false positive scattering around all our codebase when using
helper macros. It is becuase for function with 4 char name, say `main`,
the type of __FUNCTION__ and __PRETTY_FUNCTION__ is `char [5]`.
2022-10-11 13:16:48 +08:00
..
onnxruntime/core Fix clang-tidy(cppcoreguidelines-pro-bounds-array-to-pointer-decay) (#13241) 2022-10-11 13:16:48 +08:00