[Fix-Warnings] Remove more redundant empty declarations. (extra semicolons) (#6374)

This commit is contained in:
BruebachL 2025-11-29 14:19:11 +01:00 committed by GitHub
parent 858361e6d3
commit 8abd04dab1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 37 additions and 37 deletions

View file

@ -113,7 +113,7 @@ public:
[[nodiscard]] PlayerActions *getPlayerActions() const
{
return playerActions;
};
}
[[nodiscard]] PlayerEventHandler *getPlayerEventHandler() const
{
@ -123,7 +123,7 @@ public:
[[nodiscard]] PlayerInfo *getPlayerInfo() const
{
return playerInfo;
};
}
[[nodiscard]] PlayerMenu *getPlayerMenu() const
{

View file

@ -52,7 +52,7 @@ public:
void rawInsertCard(CardItem *card, int index)
{
cards.insert(index, card);
};
}
[[nodiscard]] const CardList &getCards() const
{