mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-23 22:37:55 +02:00
Fix build
This commit is contained in:
@@ -637,12 +637,6 @@ bool CCreatureSet::hasStackAtSlot(const SlotID & slot) const
|
|||||||
return vstd::contains(stacks, slot);
|
return vstd::contains(stacks, slot);
|
||||||
}
|
}
|
||||||
|
|
||||||
CCreatureSet & CCreatureSet::operator=(const CCreatureSet & cs)
|
|
||||||
{
|
|
||||||
assert(0);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CCreatureSet::armyChanged() {}
|
void CCreatureSet::armyChanged() {}
|
||||||
|
|
||||||
void CCreatureSet::serializeJson(JsonSerializeFormat & handler, const std::string & armyFieldName, const std::optional<int> fixedSize)
|
void CCreatureSet::serializeJson(JsonSerializeFormat & handler, const std::string & armyFieldName, const std::optional<int> fixedSize)
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CSimpleArmy.h"
|
#include "CSimpleArmy.h"
|
||||||
|
#include "CStackInstance.h"
|
||||||
|
|
||||||
#include "serializer/Serializeable.h"
|
#include "serializer/Serializeable.h"
|
||||||
|
|
||||||
@@ -37,10 +38,10 @@ namespace NArmyFormation
|
|||||||
static const std::vector<std::string> names{"wide", "tight"};
|
static const std::vector<std::string> names{"wide", "tight"};
|
||||||
}
|
}
|
||||||
|
|
||||||
class DLL_LINKAGE CCreatureSet : public IArmyDescriptor, public virtual Serializeable //seven combined creatures
|
class DLL_LINKAGE CCreatureSet : public IArmyDescriptor, public virtual Serializeable, boost::noncopyable //seven combined creatures
|
||||||
{
|
{
|
||||||
CCreatureSet(const CCreatureSet &) = delete;
|
CCreatureSet(const CCreatureSet &) = delete;
|
||||||
CCreatureSet & operator=(const CCreatureSet &);
|
CCreatureSet & operator=(const CCreatureSet &) = delete;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TSlots stacks; //slots[slot_id]->> pair(creature_id,creature_quantity)
|
TSlots stacks; //slots[slot_id]->> pair(creature_id,creature_quantity)
|
||||||
|
|||||||
Reference in New Issue
Block a user