Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[server] C++ 11 style default virtual destructor
  • Loading branch information
elpaso committed Jan 13, 2017
1 parent 0f7dfc9 commit 1a6b977
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions src/server/qgsserverinterface.cpp
Expand Up @@ -23,8 +23,3 @@ QgsServerInterface::QgsServerInterface():
mConfigFilePath( QString() )
{
}


QgsServerInterface::~QgsServerInterface()
{
}
2 changes: 1 addition & 1 deletion src/server/qgsserverinterface.h
Expand Up @@ -57,7 +57,7 @@ class SERVER_EXPORT QgsServerInterface
//! Constructor
QgsServerInterface();

virtual ~QgsServerInterface() = 0;
virtual ~QgsServerInterface() = default;

/**
* Set the request handler
Expand Down

0 comments on commit 1a6b977

Please sign in to comment.