Sdk: Remove systems clone (and thus need for copy constructor)
This commit is contained in:
@@ -16,12 +16,10 @@ namespace Ndk
|
||||
{
|
||||
public:
|
||||
System();
|
||||
System(const System&) = default;
|
||||
System(const System&) = delete;
|
||||
System(System&&) = default;
|
||||
virtual ~System();
|
||||
|
||||
std::unique_ptr<BaseSystem> Clone() const override;
|
||||
|
||||
System& operator=(const System&) = delete;
|
||||
System& operator=(System&&) = default;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user