MemPool: 消除 C4624 编译警告

This commit is contained in:
CalciteM 2019-08-08 00:08:32 +08:00
parent 45acdc71fd
commit 3f12f57d4d
1 changed files with 2 additions and 0 deletions

View File

@ -76,6 +76,8 @@ class MemoryPool
union Slot_ {
value_type element;
union Slot_* next;
public:
~Slot_();
};
typedef char* data_pointer_;