Skip to content

Commit d37a416

Browse files
committed
Push changes that i forgot what they do
1 parent 6842142 commit d37a416

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/threading.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ void Threading::updateAsyncWorkLists() {
278278

279279
return res != std::future_status::ready; });
280280
// range insert with move
281-
completedAsyncTasks.insert(completedAsyncTasks.end(), std::make_move_iterator(p),
282-
std::make_move_iterator(asyncWork.end()));
281+
completedAsyncTasks.insert(completedAsyncTasks.end(), p, //std::make_move_iterator(
282+
asyncWork.end());
283283
// erase the moved-from elements.
284284
asyncWork.erase(p, asyncWork.end());
285285
//#TODO we can just delete completed tasks that don't have callback or callbackargs

yaml-cpp

Submodule yaml-cpp updated 60 files

0 commit comments

Comments
 (0)