fix OB_MOD_DO_NOT_USE_ME in set_outline_params_wrapper

This commit is contained in:
jh0 2021-09-01 15:14:41 +08:00 committed by wangzelin.wzl
parent 6a31057d87
commit 7870375daf
2 changed files with 3 additions and 3 deletions

View File

@ -9059,8 +9059,8 @@ OB_DEF_SERIALIZE_SIZE(ObMaxConcurrentParam)
ObOutlineParamsWrapper::ObOutlineParamsWrapper() : allocator_(NULL), outline_params_()
{}
ObOutlineParamsWrapper::ObOutlineParamsWrapper(common::ObIAllocator* allocator)
: allocator_(allocator), outline_params_(OB_MALLOC_NORMAL_BLOCK_SIZE, ObWrapperAllocator(allocator))
ObOutlineParamsWrapper::ObOutlineParamsWrapper(common::ObIAllocator *allocator)
: allocator_(allocator), outline_params_(OB_MALLOC_NORMAL_BLOCK_SIZE, ObWrapperAllocatorWithAttr(allocator))
{}
ObOutlineParamsWrapper::~ObOutlineParamsWrapper()

View File

@ -5650,7 +5650,7 @@ private:
// used for outline manager
class ObOutlineParamsWrapper {
typedef common::ObArray<ObMaxConcurrentParam*, common::ObWrapperAllocator> OutlineParamsArray;
typedef common::ObArray<ObMaxConcurrentParam *, common::ObWrapperAllocatorWithAttr> OutlineParamsArray;
OB_UNIS_VERSION(1);
public: