Skip to content

Commit

Permalink
update to metall 0.28
Browse files Browse the repository at this point in the history
  • Loading branch information
liss-h committed Jun 25, 2024
1 parent 338b05d commit 3d47a3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Recipe(ConanFile):
generators = "CMakeDeps", "CMakeToolchain"

def requirements(self):
self.requires("metall/0.23.1", transitive_headers=True)
self.requires("metall/0.28", transitive_headers=True)
self.requires("boost/1.83.0", transitive_headers=True, force=True)

if self.options.with_test_deps:
Expand Down
2 changes: 1 addition & 1 deletion src/dice/ffi/metall_internal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace dice::metall_ffi::internal {
* @brief The metall manager type used internally.
* This object type is whats actually behind the opaque ::metall_manager * in the interface
*/
using metall_manager = metall::basic_manager<uint32_t, 1ULL << 28>;
using metall_manager = metall::basic_manager<metall::kernel::storage, metall::kernel::segment_storage, uint32_t, 1ULL << 28>;
} // namespace

#endif//DICE_METALLFFI_METALLINTERNAL_HPP

0 comments on commit 3d47a3a

Please sign in to comment.