aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/frame_crypto.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/frame_crypto.cc')
-rw-r--r--cast/streaming/frame_crypto.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cast/streaming/frame_crypto.cc b/cast/streaming/frame_crypto.cc
index e08eb4e5..567e41ca 100644
--- a/cast/streaming/frame_crypto.cc
+++ b/cast/streaming/frame_crypto.cc
@@ -23,7 +23,7 @@ EncryptedFrame::EncryptedFrame() {
EncryptedFrame::~EncryptedFrame() = default;
-EncryptedFrame::EncryptedFrame(EncryptedFrame&& other)
+EncryptedFrame::EncryptedFrame(EncryptedFrame&& other) noexcept
: EncodedFrame(static_cast<EncodedFrame&&>(other)),
owned_data_(std::move(other.owned_data_)) {
data = absl::Span<uint8_t>(owned_data_);