Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix windows warning
...\qt5\include\qtcore\qcache.h(124): warning C4150: deletion of pointer to incomplete type 'QDomDocument'; no destructor called
.../server/qgsconfigcache.h(34): note: see declaration of 'QDomDocument'
...\qt5\include\qtcore\qcache.h(124): note: while compiling class template member function 'void QCache<QString,QDomDocument>::clear(void)'
  • Loading branch information
jef-n committed May 12, 2017
1 parent 9ddd28d commit 6e3e8ce
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/server/qgsconfigcache.h
Expand Up @@ -24,15 +24,14 @@
#include <QFileSystemWatcher>
#include <QMap>
#include <QObject>
#include <QDomDocument>

#include "qgis_server.h"
#include "qgswmsconfigparser.h"

class QgsServerProjectParser;
class QgsAccessControl;

class QDomDocument;

class SERVER_EXPORT QgsConfigCache : public QObject
{
Q_OBJECT
Expand Down

0 comments on commit 6e3e8ce

Please sign in to comment.