diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-05 16:12:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-05 16:12:45 +0200 |
commit | a61ad365f526e7acdbc556abc5678cd225e120d7 (patch) | |
tree | 676bce820159900632ec4d239f60c6edd9230e9b /scene/3d | |
parent | 696be497284e95e4ba70c88ff52bc6255af81bb8 (diff) | |
parent | fc370b3feb419fdc1a8139bdf01f1dacf868ca1f (diff) |
Merge pull request #27677 from akien-mga/Wimplicit-fallthrough
Fix -Wimplicit-fallthrough warnings from GCC 8
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/collision_object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/collision_object.cpp b/scene/3d/collision_object.cpp index d8c2042c88..f542b021be 100644 --- a/scene/3d/collision_object.cpp +++ b/scene/3d/collision_object.cpp @@ -52,7 +52,7 @@ void CollisionObject::_notification(int p_what) { _update_pickable(); //get space - }; + } break; case NOTIFICATION_TRANSFORM_CHANGED: { |