Browse Source

meta: linter directive on is_meta_pointer_like

Michele Caini 1 year ago
parent
commit
f2e825b848
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/meta/pointer.hpp

+ 1 - 1
src/entt/meta/pointer.hpp

@@ -23,7 +23,7 @@ struct is_meta_pointer_like<Type *>
  * @tparam N Number of elements of the array.
  */
 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]>
     : std::false_type {};