Closed
Description
conversion.cpp uses a bunch of naked new
which is not exception-safe and results in the clang-tidy warnings of type clang-analyzer-cplusplus.NewDelete and clang-analyzer-cplusplus.NewDeleteLeaks
Those could be rewritten with unique_ptr
and release()
.