diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-27 23:18:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-27 23:18:41 +0300 |
commit | e35e56388273cb62cc93a1ef76439ce8990179e4 (patch) | |
tree | 0e1a27c7d481e4554fdd45f150c0cdb0f3c7b6b8 /src | |
parent | 84899d58678667ea9451b41bd91428f774ae1ad9 (diff) | |
download | plus-e35e56388273cb62cc93a1ef76439ce8990179e4.tar.gz plus-e35e56388273cb62cc93a1ef76439ce8990179e4.tar.bz2 plus-e35e56388273cb62cc93a1ef76439ce8990179e4.tar.xz plus-e35e56388273cb62cc93a1ef76439ce8990179e4.zip |
Remove default parameter from particleemitter.
Diffstat (limited to 'src')
-rw-r--r-- | src/particle/particleemitter.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/particle/particleemitter.h b/src/particle/particleemitter.h index ec01b88df..c1f0706d2 100644 --- a/src/particle/particleemitter.h +++ b/src/particle/particleemitter.h @@ -46,9 +46,8 @@ class ParticleEmitter final ParticleEmitter(XmlNodeConstPtrConst emitterNode, Particle *const target, Map *const map, - const int rotation = 0, - const std::string& dyePalettes = std::string()) - A_NONNULL(3); + const int rotation, + const std::string& dyePalettes) A_NONNULL(3); /** * Copy Constructor (necessary for reference counting of particle images) |