fix build issue with sgbackend by deleting the impl struct copy constructor and copy assignment operator
This commit is contained in:
@@ -71,8 +71,8 @@ struct USGBackend::FImpl
|
||||
* Default copy constructor & copy assignment operator
|
||||
************************/
|
||||
|
||||
FImpl(const FImpl& Rhs) = default;
|
||||
FImpl& operator=(const FImpl& Rhs) = default;
|
||||
FImpl(const FImpl& Rhs) = delete;
|
||||
FImpl& operator=(const FImpl& Rhs) = delete;
|
||||
};
|
||||
|
||||
USGBackend* USGBackend::GetInstance()
|
||||
|
||||
Reference in New Issue
Block a user