← Back to team overview

kicad-developers team mailing list archive

[PATCH] Add throw() to base kiway_player destructor to silence warning

 

---
 common/kiway_player.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/kiway_player.cpp b/common/kiway_player.cpp
index a33acc1..ecada9f 100644
--- a/common/kiway_player.cpp
+++ b/common/kiway_player.cpp
@@ -66,7 +66,7 @@ KIWAY_PLAYER::KIWAY_PLAYER( wxWindow* aParent, wxWindowID aId, const wxString& a
 }
 
 
-KIWAY_PLAYER::~KIWAY_PLAYER(){}
+KIWAY_PLAYER::~KIWAY_PLAYER() throw() {}
 
 
 void KIWAY_PLAYER::KiwayMailIn( KIWAY_EXPRESS& aEvent )