From f780f3cfefd6976427b0ec7e84614c19e0505d8a Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 2 Apr 2020 13:48:04 -0700 Subject: [PATCH] Remove default case from switch --- src/gtk/animate.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gtk/animate.cpp b/src/gtk/animate.cpp index 18ad1245ad..9568139ea1 100644 --- a/src/gtk/animate.cpp +++ b/src/gtk/animate.cpp @@ -457,10 +457,8 @@ wxAnimationImpl* wxAnimationCtrl::CreateAnimationImpl(wxAnimationImplType implTy case wxANIMATION_IMPL_TYPE_NATIVE: return new wxAnimationGTKImpl(); - - default: - return NULL; } + return NULL; }