diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-07-08 15:40:43 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-07-08 15:40:43 +0200 |
commit | 93fc176f6c42136d344f9feb7dcbcb48c0ab72ce (patch) | |
tree | 6cf9b987d4d9a9c2a18f186fdb16e5ed62572680 /src/SubchannelSource.cpp | |
parent | fa8a4b44497cfd3dd35eec393b65288bee90be40 (diff) | |
download | dabmod-93fc176f6c42136d344f9feb7dcbcb48c0ab72ce.tar.gz dabmod-93fc176f6c42136d344f9feb7dcbcb48c0ab72ce.tar.bz2 dabmod-93fc176f6c42136d344f9feb7dcbcb48c0ab72ce.zip |
Update EDI input library
Diffstat (limited to 'src/SubchannelSource.cpp')
-rw-r--r-- | src/SubchannelSource.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SubchannelSource.cpp b/src/SubchannelSource.cpp index b4d6750..443b5d2 100644 --- a/src/SubchannelSource.cpp +++ b/src/SubchannelSource.cpp @@ -1046,9 +1046,9 @@ size_t SubchannelSource::protectionOption() const return 0; } -void SubchannelSource::loadSubchannelData(const Buffer& data) +void SubchannelSource::loadSubchannelData(Buffer&& data) { - d_buffer = data; + d_buffer = std::move(data); } int SubchannelSource::process(Buffer* outputData) |