lokinet/llarp/mem.hpp

19 lines
411 B
C++
Raw Normal View History

2018-01-26 14:17:51 +00:00
#ifndef LLARP_MEM_HPP
#define LLARP_MEM_HPP
#include <cmath>
2018-01-29 14:27:24 +00:00
#include <llarp/mem.h>
namespace llarp {
template <typename T> static constexpr size_t alignment() {
return std::exp2(1 + std::floor(std::log2(sizeof(T))));
2018-01-26 14:17:51 +00:00
}
2018-01-31 19:59:26 +00:00
template<typename T>
static T * Alloc(llarp_alloc * mem=&llarp_g_mem)
{
return static_cast<T *>(
mem->alloc(sizeof(T), alignment<T>()));
}
2018-01-29 14:27:24 +00:00
} // namespace llarp
2018-01-26 14:17:51 +00:00
#endif