From a7010de88c7f8ab8bcfa928310fabab3a7702068 Mon Sep 17 00:00:00 2001 From: myd7349 Date: Sun, 21 Jun 2026 16:45:07 +0800 Subject: [PATCH] Remove legacy LSL_CPP11 --- include/lsl_cpp.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/lsl_cpp.h b/include/lsl_cpp.h index f249d459..741fef36 100644 --- a/include/lsl_cpp.h +++ b/include/lsl_cpp.h @@ -1374,12 +1374,8 @@ class stream_inlet { chunk.reserve(chunk.size() + target * this->channel_count); if (timestamps) timestamps->reserve(timestamps->size() + target); while ((ts = pull_sample(sample, 0.0)) != 0.0) { -#if LSL_CPP11 chunk.insert(chunk.end(), std::make_move_iterator(sample.begin()), std::make_move_iterator(sample.end())); -#else - chunk.insert(chunk.end(), sample.begin(), sample.end()); -#endif if (timestamps) timestamps->push_back(ts); } return true;