Skip to content

Commit

Permalink
Fixed Linux Test build error in CastingPlayer.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pgregorr-amazon committed May 21, 2024
1 parent 4918b5e commit 996ddae
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,9 @@ void CastingPlayer::LogDetail() const
}

CastingPlayer::CastingPlayer(const CastingPlayer & other) :
mEndpoints(other.mEndpoints), mConnectionState(other.mConnectionState), mAttributes(other.mAttributes),
mIdOptions(other.mIdOptions), mCommissioningWindowTimeoutSec(other.mCommissioningWindowTimeoutSec),
mOnCompleted(other.mOnCompleted)
std::enable_shared_from_this<CastingPlayer>(other), mEndpoints(other.mEndpoints), mConnectionState(other.mConnectionState),
mAttributes(other.mAttributes), mIdOptions(other.mIdOptions),
mCommissioningWindowTimeoutSec(other.mCommissioningWindowTimeoutSec), mOnCompleted(other.mOnCompleted)
{}

CastingPlayer & CastingPlayer::operator=(const CastingPlayer & other)
Expand Down

0 comments on commit 996ddae

Please sign in to comment.