#ifndef OSRM_STORAGE_BLOCK_HPP #define OSRM_STORAGE_BLOCK_HPP #include "storage/io.hpp" #include #include #include namespace osrm { namespace storage { struct Block { std::uint64_t num_entries = 0; std::uint64_t byte_size = 0; }; using NamedBlock = std::tuple; template Block make_block(uint64_t num_entries) { static_assert(sizeof(T) % alignof(T) == 0, "aligned T* can't be used as an array pointer"); return Block{num_entries, sizeof(T) * num_entries}; } } } #endif