mgieseki / dvisvgm

A fast DVI, EPS, and PDF to SVG converter
https://dvisvgm.de
GNU General Public License v3.0
295 stars 28 forks source link

Improve exception safety with smart pointers #230

Closed elfring closed 1 year ago

elfring commented 1 year ago

Would you like to wrap any pointer data members with the class template “std::unique_ptr”?

mgieseki commented 1 year ago

Yes, that's pretty old code. I'll replace the explicitly allocated arrays with vectors so that pointers are no longer needed there.

elfring commented 1 year ago

Thanks for your small source code improvement.