Skip to content

Commit

Permalink
bump entt
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkingsugar committed Oct 30, 2024
1 parent 68cc4f5 commit 190caa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/entt
Submodule entt updated 57 files
+14 −1 .clang-tidy
+6 −2 TODO
+135 −67 docs/md/entity.md
+9 −3 docs/md/links.md
+3 −4 docs/md/poly.md
+9 −9 src/entt/core/any.hpp
+1 −1 src/entt/core/hashed_string.hpp
+24 −0 src/entt/entity/fwd.hpp
+2 −2 src/entt/entity/handle.hpp
+232 −8 src/entt/entity/mixin.hpp
+1 −1 src/entt/entity/observer.hpp
+2 −0 src/entt/entity/organizer.hpp
+22 −28 src/entt/entity/registry.hpp
+3 −4 src/entt/entity/sparse_set.hpp
+3 −3 src/entt/entity/storage.hpp
+5 −3 src/entt/entity/view.hpp
+11 −11 src/entt/meta/container.hpp
+1 −1 src/entt/meta/factory.hpp
+33 −33 src/entt/meta/meta.hpp
+2 −2 src/entt/meta/node.hpp
+1 −1 src/entt/meta/resolve.hpp
+11 −10 src/entt/poly/poly.hpp
+2 −2 src/entt/process/scheduler.hpp
+10 −7 src/entt/signal/delegate.hpp
+1 −2 src/entt/signal/sigh.hpp
+1 −0 test/CMakeLists.txt
+13 −0 test/common/registry.h
+12 −2 test/common/throwing_allocator.hpp
+1 −0 test/entt/core/compressed_pair.cpp
+1 −1 test/entt/core/iterator.cpp
+4 −2 test/entt/core/memory.cpp
+1 −1 test/entt/core/tuple.cpp
+3 −3 test/entt/core/type_traits.cpp
+1 −0 test/entt/entity/BUILD.bazel
+13 −13 test/entt/entity/group.cpp
+15 −18 test/entt/entity/observer.cpp
+620 −0 test/entt/entity/reactive_mixin.cpp
+3 −2 test/entt/entity/registry.cpp
+83 −44 test/entt/entity/sigh_mixin.cpp
+10 −10 test/entt/entity/snapshot.cpp
+68 −42 test/entt/entity/storage.cpp
+18 −24 test/entt/entity/storage_entity.cpp
+55 −37 test/entt/entity/storage_no_instance.cpp
+16 −16 test/entt/entity/view.cpp
+2 −2 test/entt/meta/meta_any.cpp
+14 −14 test/entt/meta/meta_context.cpp
+0 −3 test/entt/meta/meta_custom.cpp
+5 −5 test/entt/meta/meta_data.cpp
+55 −51 test/entt/meta/meta_func.cpp
+4 −4 test/entt/meta/meta_pointer.cpp
+26 −26 test/entt/meta/meta_type.cpp
+10 −8 test/entt/meta/meta_utility.cpp
+83 −27 test/entt/poly/poly.cpp
+1 −1 test/entt/process/process.cpp
+2 −2 test/entt/process/scheduler.cpp
+22 −22 test/entt/signal/delegate.cpp
+36 −34 test/entt/signal/sigh.cpp

0 comments on commit 190caa0

Please sign in to comment.