We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f0f87 commit 6e05994Copy full SHA for 6e05994
include/lsl_cpp.h
@@ -1011,8 +1011,8 @@ namespace lsl {
1011
while (double ts = pull_sample(sample, timeout)) {
1012
#if __cplusplus > 199711L || _MSC_VER >= 1900
1013
chunk.insert(chunk.end(),
1014
- std::make_move_iterator(sample.cbegin()),
1015
- std::make_move_iterator(sample.cend()));
+ std::make_move_iterator(sample.begin()),
+ std::make_move_iterator(sample.end()));
1016
#else
1017
chunk.insert(chunk.end(), sample.begin(), sample.end());
1018
#endif
0 commit comments