diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/TimeInterleaver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TimeInterleaver.cpp b/src/TimeInterleaver.cpp index 7e19af8..1afdefd 100644 --- a/src/TimeInterleaver.cpp +++ b/src/TimeInterleaver.cpp @@ -64,7 +64,7 @@ int TimeInterleaver::process(Buffer* const dataIn, Buffer* dataOut) unsigned char* out = reinterpret_cast<unsigned char*>(dataOut->getData()); for (size_t i = 0; i < dataOut->getLength();) { - d_history.push_front(d_history.back()); + d_history.push_front(move(d_history.back())); d_history.pop_back(); for (uint_fast16_t j = 0; j < d_framesize;) { d_history[0][j] = in[i]; |