We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48c374b commit f2c4174Copy full SHA for f2c4174
test/entt/entity/entity.cpp
@@ -64,8 +64,8 @@ TYPED_TEST(Entity, Traits) {
64
65
ASSERT_NE(reserved, entity);
66
67
- ASSERT_NE(traits_type::to_integral(null), ~traits_type::entity_type{});
68
- ASSERT_NE(traits_type::to_integral(tombstone), ~traits_type::entity_type{});
+ ASSERT_NE(traits_type::to_integral(null), ~typename traits_type::entity_type{});
+ ASSERT_NE(traits_type::to_integral(tombstone), ~typename traits_type::entity_type{});
69
70
ASSERT_EQ(traits_type::to_entity(reserved), traits_type::to_entity(entity));
71
ASSERT_EQ(traits_type::to_version(reserved), traits_type::to_version(entity));
0 commit comments