aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/session_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/session_config.h')
-rw-r--r--cast/streaming/session_config.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cast/streaming/session_config.h b/cast/streaming/session_config.h
index f1fc0299..cf87667e 100644
--- a/cast/streaming/session_config.h
+++ b/cast/streaming/session_config.h
@@ -25,11 +25,11 @@ struct SessionConfig final {
std::chrono::milliseconds target_playout_delay,
std::array<uint8_t, 16> aes_secret_key,
std::array<uint8_t, 16> aes_iv_mask);
- SessionConfig(const SessionConfig&) = default;
- SessionConfig(SessionConfig&&) noexcept = default;
- SessionConfig& operator=(const SessionConfig&) = default;
- SessionConfig& operator=(SessionConfig&&) noexcept = default;
- ~SessionConfig() = default;
+ SessionConfig(const SessionConfig& other);
+ SessionConfig(SessionConfig&& other) noexcept;
+ SessionConfig& operator=(const SessionConfig& other);
+ SessionConfig& operator=(SessionConfig&& other) noexcept;
+ ~SessionConfig();
// The sender and receiver's SSRC identifiers. Note: SSRC identifiers
// are defined as unsigned 32 bit integers here: