test: suppress warnings

This commit is contained in:
Michele Caini
2023-01-26 11:42:11 +01:00
parent d0090d35fb
commit b808bb83b7

View File

@@ -376,7 +376,7 @@ ENTT_DEBUG_TEST(StorageEntityDeathTest, SortAndRespect) {
other.push(entt::entity{2});
ASSERT_DEATH(pool.sort([&pool](auto...) { return true; }), "");
ASSERT_DEATH(pool.sort([](auto...) { return true; }), "");
ASSERT_DEATH(pool.respect(other), "");
}