Skip to content

Commit

Permalink
Fix move constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
KinoMyu committed Feb 6, 2018
1 parent da2a3b7 commit 1fdfb21
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/HCAStreamChannel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ HCAStreamChannel& HCAStreamChannel::operator=(HCAStreamChannel&& other)
unload();
if (this != &other)
{
dec = other->dec;
ptr = other.ptr;
size = other.size;
playback_channel = other.playback_channel;
Expand Down

0 comments on commit 1fdfb21

Please sign in to comment.