Skip to content

Commit

Permalink
warning: enumeration value x not handled in switch
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasMagnus committed Nov 16, 2023
1 parent 83b8048 commit b9633c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions samples/extensions/khr/conway/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ void Conway::event(const sf::Event& event)
animating = !animating;
}
break;
default: break;
}
}

Expand Down
1 change: 1 addition & 0 deletions samples/extensions/khr/nbody/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ void NBody::event(const sf::Event& event)
dist = abs(dist);
needMatrixReset = true; // view matrix need to be recalculated
break;
default: break;
}
}

Expand Down

0 comments on commit b9633c8

Please sign in to comment.