test: prepare to cleanup clang-tidy config and track things to review in future

This commit is contained in:
Michele Caini
2024-01-10 17:35:27 +01:00
parent b152c63dd6
commit 2b092c2fce
51 changed files with 750 additions and 747 deletions

View File

@@ -54,7 +54,7 @@ TEST(EntityCopy, SameRegistry) {
const auto dst = registry.create();
custom.emplace(src, 1.);
registry.emplace<int>(src, 42);
registry.emplace<int>(src, 42); // NOLINT
registry.emplace<char>(src, 'c');
ASSERT_EQ(registry.storage<entt::entity>().size(), 2u);
@@ -90,7 +90,7 @@ TYPED_TEST(EntityCopy, CrossRegistry) {
const auto entity = src.create();
const auto copy = dst.create();
src.emplace<int>(entity, 42);
src.emplace<int>(entity, 42); // NOLINT
src.emplace<char>(entity, 'c');
ASSERT_EQ(src.storage<entt::entity>().size(), 1u);