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

@@ -78,7 +78,8 @@ bool PacketQueue::inputPacket(DataPacket::Ptr pkt, std::list<DataPacket::Ptr> &o
}
while (_pkt_map.size() > _pkt_cap) {
// 防止回环
// 防止回环 [AUTO-TRANSLATED:5999c704]
// Prevent circular references
it = _pkt_map.find(_pkt_expected_seq);
if (it != _pkt_map.end()) {
out.push_back(it->second);