#ifndef LLARP_MEM_HPP #define LLARP_MEM_HPP #include #include namespace llarp { template static constexpr size_t alignment() { return std::exp2(1+std::floor(std::log2(sizeof(T)))); } } #endif