2023-12-17 18:09:53 +08:00

22 lines
414 B
C++

/**
* \file libpmr/def.h
* \author mutouyun (orz@orzz.org)
* \brief Define the trivial configuration information for memory resources.
* \date 2022-11-13
*/
#pragma once
#define LIBPMR pmr
#define LIBPMR_NAMESPACE_BEG_ namespace LIBPMR {
#define LIBPMR_NAMESPACE_END_ }
LIBPMR_NAMESPACE_BEG_
/// \brief Constants.
enum : std::size_t {
block_pool_expansion = 64,
};
LIBPMR_NAMESPACE_END_