Get rid of unqualified std:: types.
BUG=NONE TBR=stefan@webrtc.org NOTRY=True Review-Url: https://codereview.webrtc.org/2675523003 Cr-Commit-Position: refs/heads/master@{#16425}
This commit is contained in:
parent
6741516e18
commit
a24a9e2fa6
@ -193,7 +193,7 @@ class PacketQueue {
|
||||
std::priority_queue<Packet*, std::vector<Packet*>, Comparator> prio_queue_;
|
||||
// Total number of bytes in the queue.
|
||||
uint64_t bytes_;
|
||||
// Map<ssrc, set<seq_no> >, for checking duplicates.
|
||||
// Map<ssrc, std::set<seq_no> >, for checking duplicates.
|
||||
typedef std::map<uint32_t, std::set<uint16_t> > SsrcSeqNoMap;
|
||||
SsrcSeqNoMap dupe_map_;
|
||||
Clock* const clock_;
|
||||
|
||||
@ -136,7 +136,7 @@ void Link::AddPacketProcessor(PacketProcessor* processor,
|
||||
}
|
||||
|
||||
void Link::RemovePacketProcessor(PacketProcessor* processor) {
|
||||
for (vector<PacketProcessorRunner>::iterator it = processors_.begin();
|
||||
for (std::vector<PacketProcessorRunner>::iterator it = processors_.begin();
|
||||
it != processors_.end(); ++it) {
|
||||
if (it->RunsProcessor(processor)) {
|
||||
processors_.erase(it);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user