diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-17 18:21:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-17 18:21:23 +0300 |
commit | 0f64a06317df182ab0ff4a0ae9fbe1aad880dcc0 (patch) | |
tree | 99d5be24dafbf05ba3b30e603296222fe7e407dc /src/resources/effectdescription.h | |
parent | 45115a07e0753fe30bcaac59ec9f3ed4da5048c2 (diff) | |
download | mv-0f64a06317df182ab0ff4a0ae9fbe1aad880dcc0.tar.gz mv-0f64a06317df182ab0ff4a0ae9fbe1aad880dcc0.tar.bz2 mv-0f64a06317df182ab0ff4a0ae9fbe1aad880dcc0.tar.xz mv-0f64a06317df182ab0ff4a0ae9fbe1aad880dcc0.zip |
Add missing A_DEFAULT_COPY / A_DELETE_COPY into resources.
Diffstat (limited to 'src/resources/effectdescription.h')
-rw-r--r-- | src/resources/effectdescription.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/resources/effectdescription.h b/src/resources/effectdescription.h index 17765d114..f5d57d552 100644 --- a/src/resources/effectdescription.h +++ b/src/resources/effectdescription.h @@ -29,14 +29,17 @@ struct EffectDescription final { - EffectDescription(const int id0, const std::string &gfx0, + EffectDescription(const int id0, + const std::string &gfx0, const std::string &sfx0, const std::string &sprite0) : id(id0), gfx(gfx0), sfx(sfx0), sprite(sprite0) - { } + { } + + A_DEFAULT_COPY(EffectDescription) int id; std::string gfx; |