test: minor changes

This commit is contained in:
Michele Caini
2024-04-30 11:03:15 +02:00
parent a3cea32f93
commit 41aab920b0

View File

@@ -142,6 +142,7 @@ ENTT_DEBUG_TEST(TableDeathTest, Indexing) {
entt::table<int, char> table;
ASSERT_DEATH([[maybe_unused]] auto value = table[0u], "");
ASSERT_DEATH([[maybe_unused]] auto value = std::as_const(table)[0u], "");
}
TEST(Table, Clear) {