Skip to content

Commit

Permalink
Fix Clang warning about missing enum cases
Browse files Browse the repository at this point in the history
  • Loading branch information
ajtribick committed Apr 4, 2024
1 parent f656a12 commit b54fa98
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/celestia/qt/qtsolarsystembrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ objectTypeName(const Selection& sel)
return _("Component");
case BodyClassification::SurfaceFeature:
return _("Surface feature");
default:
break; // Fix Clang warning
}
}

Expand Down

0 comments on commit b54fa98

Please sign in to comment.