Added protected d-tor to sf::NonCopyable to prevent possible resource leaks.
This commit is contained in:
parent
67ef694443
commit
77d19859bc
|
@ -51,6 +51,16 @@ protected:
|
||||||
///
|
///
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
NonCopyable() {}
|
NonCopyable() {}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
/// \brief Default destructor
|
||||||
|
///
|
||||||
|
/// By declaring a protected destructor it's impossible to
|
||||||
|
/// call delete on a pointer of sf::NonCopyable, thus
|
||||||
|
/// preventing possible resource leaks.
|
||||||
|
///
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
~NonCopyable() {}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue