2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "common.hpp"
|
2016-06-23 16:26:19 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
LEMONBUDDY_NS
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
namespace memory_util {
|
|
|
|
/**
|
|
|
|
* Create a shared pointer using malloc/free
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
inline auto make_malloc_ptr(size_t size = sizeof(T)) {
|
|
|
|
return shared_ptr<T>(static_cast<T*>(malloc(size)), free);
|
|
|
|
}
|
2016-06-23 16:26:19 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
/**
|
|
|
|
* Get the number of elements in T
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
inline auto countof(T& p) {
|
|
|
|
return sizeof(p) / sizeof(p[0]);
|
2016-06-23 16:26:19 -04:00
|
|
|
}
|
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
LEMONBUDDY_NS_END
|