Skip to content

Commit

Permalink
chore(deps): use the unreleased version of EnTT
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-vincent committed Jun 13, 2024
1 parent 52c0ec0 commit 3f31a54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ add_compile_definitions(ENTT_PACKED_PAGE=128)
find_package(Boost CONFIG REQUIRED)
find_package(concurrentqueue CONFIG REQUIRED)
find_package(cpptrace CONFIG REQUIRED)
find_package(EnTT CONFIG REQUIRED)
#find_package(EnTT CONFIG REQUIRED)
include(FetchContent)
FetchContent_Declare(EnTT URL https://github.com/skypjack/entt/archive/41aab920b083aa424ac1d27666ce287eeaff6ceb.tar.gz)
FetchContent_MakeAvailable(EnTT)
find_package(expected-lite REQUIRED)
find_package(fmt CONFIG REQUIRED)
find_package(funchook CONFIG REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def requirements(self):
self.requires("boost/1.85.0")
self.requires("concurrentqueue/1.0.4")
self.requires("cpptrace/0.5.2")
self.requires("entt/3.13.0")
# self.requires("entt/3.13.0")
self.requires("expected-lite/0.6.3")
self.requires("fmt/[>=10.1.1]", transitive_headers=True, transitive_libs=True)
self.requires("funchook/1.1.3")
Expand Down
2 changes: 1 addition & 1 deletion include/bedrock/entity/entity_registry.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ class EntityRegistry : public std::enable_shared_from_this<EntityRegistry> {

std::string name_; // +16
entt::basic_registry<EntityId> registry_; // +48
std::uint32_t id_; // +336
std::uint32_t id_; // +352
};

0 comments on commit 3f31a54

Please sign in to comment.