diff options
| author | vitya-smirnov <[email protected]> | 2026-02-17 09:00:20 +0300 |
|---|---|---|
| committer | vitya-smirnov <[email protected]> | 2026-02-17 09:29:10 +0300 |
| commit | 69276e08c73be7e117d78a4d97894547aa7f6f61 (patch) | |
| tree | 89bbf7f86e09e3166cc0afbc127bcf31baf0808f /util | |
| parent | baa0e41d7c6fe511e49907d6a298a2445721bc34 (diff) | |
YQL-20095: Ignore modernize-avoid-c-arrays
Clang Tidy complains on a c-array usage, expanded from
the macro, but I do not think, that it is really worth
to `#include <array>` here.
commit_hash:ca9d60f11175812b74534833a5d7bb59b3b547d2
Diffstat (limited to 'util')
| -rw-r--r-- | util/generic/typetraits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/generic/typetraits.h b/util/generic/typetraits.h index 0fc1e989f76..fbb680f8eef 100644 --- a/util/generic/typetraits.h +++ b/util/generic/typetraits.h @@ -145,7 +145,7 @@ class TTypeTraits<void>: public TTypeTraitsBase<void> {}; char Ch; \ }; \ struct TYes { \ - char Arr[2]; \ + char Arr[2]; /* NOLINT(modernize-avoid-c-arrays) */ \ }; \ template <class T1> \ static TNo CheckMember(T1*, TChecker<void (TBase::*)(), &T1::method>* = nullptr); \ |
