1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-19 19:39:41 +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