From de4ce1af3dc59db4aa34db00be1aee2df2f2cb5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Mon, 23 Dec 2024 18:50:15 +0100 Subject: [PATCH] Q_UNUSED foil for now but keep parsing logic for future PR's/compatibility. --- common/decklist.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/decklist.cpp b/common/decklist.cpp index 7c1423fbf..5c34fdb06 100644 --- a/common/decklist.cpp +++ b/common/decklist.cpp @@ -648,6 +648,7 @@ bool DeckList::loadFromStream_Plain(QTextStream &in) isFoil = true; cardName.chop(3); // Remove the "*F*" from the card name } + Q_UNUSED(isFoil); // Attempt to match the hyphen-separated format (PLST-2094) match = reHyphenFormat.match(cardName);