(NDK) Fixed copy/move constructor/operator
Former-commit-id: e51e7cab650aa7c17141f7401fbcbdf3159aec2b
This commit is contained in:
@@ -16,10 +16,15 @@ namespace Ndk
|
||||
{
|
||||
public:
|
||||
System();
|
||||
System(const System&) = default;
|
||||
System(System&&) = default;
|
||||
virtual ~System();
|
||||
|
||||
BaseSystem* Clone() const override;
|
||||
|
||||
System& operator=(const System&) = delete;
|
||||
System& operator=(System&&) = default;
|
||||
|
||||
static SystemIndex RegisterSystem();
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user