|
@@ -23,7 +23,7 @@ struct is_meta_pointer_like<Type *>
|
|
|
* @tparam N Number of elements of the array.
|
|
* @tparam N Number of elements of the array.
|
|
|
*/
|
|
*/
|
|
|
template<typename Type, std::size_t N>
|
|
template<typename Type, std::size_t N>
|
|
|
-// NOLINTNEXTLINE(modernize-avoid-c-arrays)
|
|
|
|
|
|
|
+// NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays, modernize-avoid-c-arrays)
|
|
|
struct is_meta_pointer_like<Type (*)[N]>
|
|
struct is_meta_pointer_like<Type (*)[N]>
|
|
|
: std::false_type {};
|
|
: std::false_type {};
|
|
|
|
|
|