fix minor bugs

This commit is contained in:
2021-11-23 14:38:08 -05:00
parent b5a66a6000
commit c75ba3b3a8
5 changed files with 10 additions and 12 deletions

View File

@@ -164,7 +164,7 @@ UniqueChannel DrivenEngine::new_incoming_channel() {
} else {
UniqueChannel result = std::move(accepted_channels_.back());
accepted_channels_.pop_back();
return std::move(result);
return result;
}
}