Skip to content
This repository has been archived by the owner on Sep 24, 2023. It is now read-only.

Commit

Permalink
Don't use "= default" as it breaks gcc 4.7
Browse files Browse the repository at this point in the history
Change-Id: Ie96d31c91d8fbd3e21401437feb2dd3458aa1c83
Reviewed-on: https://codereview.kdab.com/32757
Tested-by: Continuous Integration <[email protected]>
Reviewed-by: Frank Osterfeld <[email protected]>
  • Loading branch information
TheOneRing authored and frankosterfeld committed Apr 29, 2016
1 parent c117bb6 commit 085a988
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Core/CommandEmitterInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class CharmCommand;
class CommandEmitterInterface
{
public:
virtual ~CommandEmitterInterface() = default;
virtual ~CommandEmitterInterface() {}
virtual void commitCommand( CharmCommand* ) = 0;
};

Expand Down
2 changes: 1 addition & 1 deletion Core/UIStateInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class UIStateInterface :
public CommandEmitterInterface
{
public:
virtual ~UIStateInterface() = default;
virtual ~UIStateInterface() {};
virtual void saveGuiState() = 0;
virtual void restoreGuiState() = 0;
virtual void stateChanged( State previous ) = 0;
Expand Down
2 changes: 1 addition & 1 deletion Core/ViewInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ViewInterface :
public UIStateInterface
{
public:
virtual ~ViewInterface() = default;
virtual ~ViewInterface() {};

// application:
virtual void saveConfiguration() = 0;
Expand Down

0 comments on commit 085a988

Please sign in to comment.