mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-11 21:04:07 -07:00
[Fix-Warnings] Replace types with auto for libcockatrice/deck_list/ files
This commit is contained in:
parent
9d7b25ec09
commit
3a6cb9ff65
1 changed files with 3 additions and 3 deletions
|
|
@ -141,7 +141,7 @@ bool DeckList::readElement(QXmlStreamReader *xml)
|
||||||
InnerDecklistNode *newZone = getZoneObjFromName(xml->attributes().value("name").toString());
|
InnerDecklistNode *newZone = getZoneObjFromName(xml->attributes().value("name").toString());
|
||||||
newZone->readElement(xml);
|
newZone->readElement(xml);
|
||||||
} else if (childName == "sideboard_plan") {
|
} else if (childName == "sideboard_plan") {
|
||||||
SideboardPlan *newSideboardPlan = new SideboardPlan;
|
auto *newSideboardPlan = new SideboardPlan;
|
||||||
if (newSideboardPlan->readElement(xml)) {
|
if (newSideboardPlan->readElement(xml)) {
|
||||||
sideboardPlans.insert(newSideboardPlan->getName(), newSideboardPlan);
|
sideboardPlans.insert(newSideboardPlan->getName(), newSideboardPlan);
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -714,9 +714,9 @@ void DeckList::forEachCard(const std::function<void(InnerDecklistNode *, Decklis
|
||||||
// Support for this is only possible if the internal structure
|
// Support for this is only possible if the internal structure
|
||||||
// doesn't get more complicated.
|
// doesn't get more complicated.
|
||||||
for (int i = 0; i < root->size(); i++) {
|
for (int i = 0; i < root->size(); i++) {
|
||||||
InnerDecklistNode *node = dynamic_cast<InnerDecklistNode *>(root->at(i));
|
auto *node = dynamic_cast<InnerDecklistNode *>(root->at(i));
|
||||||
for (int j = 0; j < node->size(); j++) {
|
for (int j = 0; j < node->size(); j++) {
|
||||||
DecklistCardNode *card = dynamic_cast<DecklistCardNode *>(node->at(j));
|
auto *card = dynamic_cast<DecklistCardNode *>(node->at(j));
|
||||||
func(node, card);
|
func(node, card);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue