diff options
author | Erik Schilling <ablu.erikschilling@gmail.com> | 2013-12-08 21:14:34 +0100 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@gmail.com> | 2013-12-08 21:14:34 +0100 |
commit | 71afa592b2df4b6a01236dd2189c9ba28c9a3fa8 (patch) | |
tree | d5edacc7beb35f5c6e06781a08b97e6ac4a22f23 /src | |
parent | c5f0ca6d622ef7361597d59bc5fbadbc799389c2 (diff) | |
download | manaserv-71afa592b2df4b6a01236dd2189c9ba28c9a3fa8.tar.gz manaserv-71afa592b2df4b6a01236dd2189c9ba28c9a3fa8.tar.bz2 manaserv-71afa592b2df4b6a01236dd2189c9ba28c9a3fa8.tar.xz manaserv-71afa592b2df4b6a01236dd2189c9ba28c9a3fa8.zip |
Restored copy constructor protection for mapcomposite
Diffstat (limited to 'src')
-rw-r--r-- | src/game-server/mapcomposite.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game-server/mapcomposite.h b/src/game-server/mapcomposite.h index effed26a..b428074e 100644 --- a/src/game-server/mapcomposite.h +++ b/src/game-server/mapcomposite.h @@ -132,6 +132,7 @@ class MapComposite { public: MapComposite(int id, const std::string &name); + MapComposite(const MapComposite &) = delete; ~MapComposite(); bool readMap(); |