1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 06:15:32 +00:00

Issue #225: Land struct is not copyable.

Disabled copy constructor and assignment operator in Land structure.
This commit is contained in:
Lukasz Gromanowski 2012-04-04 21:39:21 +02:00
parent cd2789b15a
commit ea8e5cb6f8

View file

@ -80,6 +80,11 @@ struct Land
* Frees memory allocated for land data
*/
void unloadData();
private:
Land(const Land& land);
Land& operator=(const Land& land);
};
}
#endif