Skip to content

Commit

Permalink
Default operator
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed Mar 9, 2021
1 parent cbe3be7 commit 51f2bda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/server/auto_generated/qgsserverrequest.sip.in
Expand Up @@ -63,6 +63,7 @@ Constructor
Copy constructor.
%End


virtual ~QgsServerRequest();

static QString methodToString( const Method &method );
Expand Down
3 changes: 2 additions & 1 deletion src/server/qgsserverrequest.h
Expand Up @@ -86,7 +86,8 @@ class SERVER_EXPORT QgsServerRequest
* Copy constructor.
*/
QgsServerRequest( const QgsServerRequest &other );
QgsServerRequest &operator=( const QgsServerRequest & ) = delete;

QgsServerRequest &operator=( const QgsServerRequest & ) = default;

//! destructor
virtual ~QgsServerRequest() = default;
Expand Down

0 comments on commit 51f2bda

Please sign in to comment.