diff --git a/packages/react-native/ReactCommon/react/renderer/imagemanager/ImageRequest.h b/packages/react-native/ReactCommon/react/renderer/imagemanager/ImageRequest.h index 781b1f3971ad..d5fa1c707080 100644 --- a/packages/react-native/ReactCommon/react/renderer/imagemanager/ImageRequest.h +++ b/packages/react-native/ReactCommon/react/renderer/imagemanager/ImageRequest.h @@ -39,10 +39,21 @@ class ImageRequest final { */ ImageRequest(ImageRequest&& other) noexcept = default; + /* + * Move assignment operator. + */ + ImageRequest& operator=(ImageRequest&& other) noexcept = default; + /* * `ImageRequest` does not support copying by design. */ ImageRequest(const ImageRequest& other) = delete; + ImageRequest& operator=(const ImageRequest& other) = delete; + + /* + * Destructor + */ + ~ImageRequest() = default; /* * Returns the Image Source associated with the request.