diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-19 18:54:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 18:54:32 +0300 |
commit | eff128d7019ea0cd137a5fff6cc67825f90c4e1b (patch) | |
tree | d56835cd042f2794b4c5182cedd5eefb96099d5a /src/particle/imageparticle.h | |
parent | 6a79c4cc085f5cc7fea8a7b383744a40f3ccea6c (diff) | |
download | plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.gz plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.bz2 plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.xz plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.zip |
fix code style
Diffstat (limited to 'src/particle/imageparticle.h')
-rw-r--r-- | src/particle/imageparticle.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/particle/imageparticle.h b/src/particle/imageparticle.h index 26a5ac651..c05b2316e 100644 --- a/src/particle/imageparticle.h +++ b/src/particle/imageparticle.h @@ -28,7 +28,6 @@ #include <map> class Image; -class Map; /** * A particle that uses an image for its visualization. @@ -42,7 +41,7 @@ class ImageParticle : public Particle * @param map the map this particle appears on * @param image an Image instance, may not be NULL */ - ImageParticle(Image *const image); + explicit ImageParticle(Image *const image); A_DELETE_COPY(ImageParticle) |