From 76516e0320566f80fcb431eed7b358d7e1c57ccb Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Thu, 2 Nov 2023 15:05:16 +0100 Subject: [PATCH] test: cleanup --- test/entt/common/pointer_stable.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/entt/common/pointer_stable.h b/test/entt/common/pointer_stable.h index bb06f5176..cdee3be37 100644 --- a/test/entt/common/pointer_stable.h +++ b/test/entt/common/pointer_stable.h @@ -1,8 +1,6 @@ #ifndef ENTT_COMMON_POINTER_STABLE_HPP #define ENTT_COMMON_POINTER_STABLE_HPP -#include - namespace test { struct pointer_stable { @@ -18,9 +16,6 @@ inline bool operator<(const pointer_stable &lhs, const pointer_stable &rhs) { return lhs.value < rhs.value; } -// ensure that we've at least an aggregate type to test here -static_assert(std::is_aggregate_v, "Not an aggregate type"); - } // namespace test #endif