Re: [QGIS-Developer] On the danger of static C++ objects

2017-11-15 Thread Tim Sutton
Hi Even > On 16 Nov 2017, at 00:58, Even Rouault wrote: > > Hi, > > There was a frequent crash in PyQgsServerWMS on Travis that I've hopefully > fixed per > https://github.com/qgis/QGIS/commit/581d0d30ca89a213b1ba1a56a3fe2af5c896eacd >

[QGIS-Developer] On the danger of static C++ objects

2017-11-15 Thread Even Rouault
Hi, There was a frequent crash in PyQgsServerWMS on Travis that I've hopefully fixed per https://github.com/qgis/QGIS/commit/581d0d30ca89a213b1ba1a56a3fe2af5c896eacd This is the opportunity to raise attention on the danger of using this pattern: static SomeClass singletonInstance; where