Skip to content

Commit

Permalink
Update comment in yuv_image.h
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 702659382
  • Loading branch information
MediaPipe Team authored and copybara-github committed Dec 4, 2024
1 parent c1433ba commit 65d7c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediapipe/framework/formats/yuv_image.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class YUVImage {
YUVImage() = default;
~YUVImage() { Clear(); }

// YUVImage is neither copyable nor movable.
// YUVImage is move-only.
YUVImage(const YUVImage&) = delete;
YUVImage& operator=(const YUVImage&) = delete;
YUVImage(YUVImage&& b) { *this = std::move(b); }
Expand Down

0 comments on commit 65d7c90

Please sign in to comment.