mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
COMMON: fix move assignment operator in ScopedPtr
This commit is contained in:
parent
056a7f702e
commit
3c0dfdf49f
@ -570,6 +570,8 @@ struct ArrayDeleter {
|
||||
|
||||
template<typename T, class DL = DefaultDeleter<T> >
|
||||
class ScopedPtr : private NonCopyable, public SafeBool<ScopedPtr<T, DL> > {
|
||||
template<class T2, class DL2>
|
||||
friend class ScopedPtr;
|
||||
public:
|
||||
typedef T ValueType;
|
||||
typedef T *PointerType;
|
||||
|
Loading…
Reference in New Issue
Block a user