summaryrefslogtreecommitdiff
path: root/src/resources/map
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-29 06:54:37 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-29 06:54:37 +0300
commitb26fc689da4e1e8e02c8f71904a70ce5c156b482 (patch)
tree66d8c2cd33a9f7e9d3ffbaaff5ecdedeee26079f /src/resources/map
parentf66d0455c65855da1768c692857aa661e5208d8c (diff)
downloadplus-b26fc689da4e1e8e02c8f71904a70ce5c156b482.tar.gz
plus-b26fc689da4e1e8e02c8f71904a70ce5c156b482.tar.bz2
plus-b26fc689da4e1e8e02c8f71904a70ce5c156b482.tar.xz
plus-b26fc689da4e1e8e02c8f71904a70ce5c156b482.zip
Add missing final / notfinal keywords to classes.
Diffstat (limited to 'src/resources/map')
-rw-r--r--src/resources/map/maplayer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/map/maplayer.h b/src/resources/map/maplayer.h
index 87ddb96ec..b0c814d59 100644
--- a/src/resources/map/maplayer.h
+++ b/src/resources/map/maplayer.h
@@ -45,7 +45,7 @@ struct MetaTile;
* A map layer. Stores a grid of tiles and their offset, and implements layer
* rendering.
*/
-class MapLayer final: public MemoryCounter, public ConfigListener
+class MapLayer final : public MemoryCounter, public ConfigListener
{
public:
friend class Map;