Re: [geos-devel] MSVC / Error C2280

2022-05-07 Thread Paul Ramsey
Thanks Even, now that you point it out, that makes perfect sense. P. > On May 7, 2022, at 4:34 PM, Even Rouault wrote: > > Paul, > > I'd say you should add a deleted default copy constructor and assignment > operator in PolygonHull: > > PolygonHull(const PolygonHull&) = delete; >

Re: [geos-devel] MSVC / Error C2280

2022-05-07 Thread Even Rouault
Paul, I'd say you should add a deleted default copy constructor and assignment operator in PolygonHull:     PolygonHull(const PolygonHull&) = delete;     PolygonHull& operator=(const PolygonHull&) = delete; Even Le 08/05/2022 à 01:11, Paul Ramsey a écrit : Hi all, I have again been

[geos-devel] MSVC / Error C2280

2022-05-07 Thread Paul Ramsey
Hi all, I have again been defeated by MSVC and the nuances of unique_ptr and copy ... the build error is here: https://github.com/pramsey/geos/runs/6336639337?check_suite_focus=true#step:3:97 The relevant files are