16 lines
273 B
C++
16 lines
273 B
C++
|
#include <seafire/common/allocator.hxx>
|
||
|
|
||
|
namespace seafire::common
|
||
|
{
|
||
|
|
||
|
allocator_t::
|
||
|
allocator_t() = default;
|
||
|
|
||
|
allocator_t::allocation_t::
|
||
|
allocation_t() = default;
|
||
|
|
||
|
allocator_t::allocation_t::
|
||
|
~allocation_t() noexcept = default;
|
||
|
|
||
|
} // namespace seafire::common
|