fix build issue with sgbackend by deleting the impl struct copy constructor and copy assignment operator

This commit is contained in:
Mamadou Babaei
2025-06-04 00:48:21 +02:00
parent 3fb52fa066
commit eb610208b9
@@ -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()