AI automatically translates all comments in the code into English (#3917)

This commit is contained in:
alex
2024-09-19 14:53:50 +08:00
committed by GitHub
parent 046de691cb
commit 4152dcd409
279 changed files with 10602 additions and 3038 deletions

View File

@@ -68,7 +68,8 @@ void NackContext::drop(uint32_t seq) {
for (auto it = _nack_map.begin(); it != _nack_map.end();) {
if (!is_cycle) {
// 不回环
// 不回环 [AUTO-TRANSLATED:abe3c07b]
// No loop
if (it->first <= seq) {
it = _nack_map.erase(it);
} else {