summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-27 23:08:11 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-27 23:08:11 +0300
commit07d17ef61c1216af5e4029cb4afd751268ced96f (patch)
treed85761a8ecf50c9d77cd1988ece806d2ad008fe9
parent05c4aa0dbbad9d3c01c22b5b4892f85eca9f4807 (diff)
downloadplus-07d17ef61c1216af5e4029cb4afd751268ced96f.tar.gz
plus-07d17ef61c1216af5e4029cb4afd751268ced96f.tar.bz2
plus-07d17ef61c1216af5e4029cb4afd751268ced96f.tar.xz
plus-07d17ef61c1216af5e4029cb4afd751268ced96f.zip
Remove default parameters from animationparticle.
-rw-r--r--src/particle/animationparticle.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/particle/animationparticle.h b/src/particle/animationparticle.h
index 9c5e6af5d..d56d14ee6 100644
--- a/src/particle/animationparticle.h
+++ b/src/particle/animationparticle.h
@@ -35,9 +35,8 @@ class AnimationParticle final : public ImageParticle
explicit AnimationParticle(Animation *restrict const animation)
A_NONNULL(2);
- explicit AnimationParticle(XmlNodePtrConst animationNode,
- const std::string &restrict dyePalettes
- = std::string());
+ AnimationParticle(XmlNodePtrConst animationNode,
+ const std::string &restrict dyePalettes);
A_DELETE_COPY(AnimationParticle)
};