From 944df589fb5f6cbca8f81be5bc0595d4379fcb58 Mon Sep 17 00:00:00 2001 From: RickyRister Date: Sun, 28 Jun 2026 15:27:12 -0700 Subject: [PATCH] remove default case --- cockatrice/src/game_graphics/tally/tally.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cockatrice/src/game_graphics/tally/tally.cpp b/cockatrice/src/game_graphics/tally/tally.cpp index 6f6cd57db..521417ae6 100644 --- a/cockatrice/src/game_graphics/tally/tally.cpp +++ b/cockatrice/src/game_graphics/tally/tally.cpp @@ -9,7 +9,6 @@ QList Tally::compute(const QList &cards, const TallyType t return {}; case TallyType::Subtypes: return SubtypeTally::countSubtypes(cards); - default: - return {}; } -} \ No newline at end of file + return {}; +}