summaryrefslogtreecommitdiff
path: root/src/units.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-01-17 18:22:25 +0300
committerAndrei Karas <akaras@inbox.ru>2017-01-17 18:22:25 +0300
commit533172dc2df60406e2c7f08f36de3742721f8079 (patch)
tree3cdd02c2876a8eaeb8d852384e6214ecac13739c /src/units.cpp
parentfed37f530d063cbce6a9bba7f1a878c42e10367e (diff)
downloadplus-533172dc2df60406e2c7f08f36de3742721f8079.tar.gz
plus-533172dc2df60406e2c7f08f36de3742721f8079.tar.bz2
plus-533172dc2df60406e2c7f08f36de3742721f8079.tar.xz
plus-533172dc2df60406e2c7f08f36de3742721f8079.zip
Add missing A_DEFAULT_COPY / A_DELETE_COPY into other files.
Diffstat (limited to 'src/units.cpp')
-rw-r--r--src/units.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/units.cpp b/src/units.cpp
index ec2a356a9..cc68c7463 100644
--- a/src/units.cpp
+++ b/src/units.cpp
@@ -33,6 +33,8 @@
struct UnitLevel final
{
+ A_DEFAULT_COPY(UnitLevel)
+
std::string symbol;
int count;
int round;
@@ -41,6 +43,8 @@ struct UnitLevel final
struct UnitDescription final
{
+ A_DEFAULT_COPY(UnitDescription)
+
std::vector<struct UnitLevel> levels;
double conversion;
bool mix;