diff --git a/src/entt/meta/meta.hpp b/src/entt/meta/meta.hpp index fa1e351e6..b9dd6cfde 100644 --- a/src/entt/meta/meta.hpp +++ b/src/entt/meta/meta.hpp @@ -1505,6 +1505,7 @@ class meta_type { /*! @copydoc meta_data::operator== */ [[nodiscard]] bool operator==(const meta_type &other) const noexcept { + // NOLINTNEXTLINE(clang-analyzer-core.NonNullParamChecker) return (ctx == other.ctx) && ((node.info == nullptr) == (other.node.info == nullptr)) && (node.info == nullptr || (*node.info == *other.node.info)); }