Yanfeng Mi
Results
2
issues of
Yanfeng Mi
bool AbstractBuffersPool::isPoolBuffer(const BufferParentType *buffer) const { static_assert(std::is_base_of_v); return (buffer && this->mainStorage.get() == buffer); // for clang compiler, unique_ptr is assigned nullptr firstly }
bug
…iler The issue root-caused to the subtle difference of unique_ptr's destructor between clang and gcc: Clang (libc++): Calls unique_ptr's destructor, which first clears the internal pointer to nullptr and then...