Remove default case from switch

This commit is contained in:
Robin Dunn
2020-04-02 13:48:04 -07:00
parent 6f79567f3b
commit f780f3cfef

View File

@@ -457,10 +457,8 @@ wxAnimationImpl* wxAnimationCtrl::CreateAnimationImpl(wxAnimationImplType implTy
case wxANIMATION_IMPL_TYPE_NATIVE:
return new wxAnimationGTKImpl();
default:
return NULL;
}
return NULL;
}