mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
2010-02-28 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Use vector instead of deque for containers which is used for mostly read-only purpose.
This commit is contained in:
parent
135f0a2a8c
commit
c342bde962
277 changed files with 1280 additions and 1232 deletions
|
@ -40,7 +40,8 @@ void DHTRoutingTableSerializerTest::testSerialize()
|
|||
nodesSrc[i]->setPort(6881+i);
|
||||
}
|
||||
nodesSrc[1]->setIPAddress("non-numerical-name");
|
||||
std::deque<SharedHandle<DHTNode> > nodes(&nodesSrc[0], &nodesSrc[arrayLength(nodesSrc)]);
|
||||
std::vector<SharedHandle<DHTNode> > nodes
|
||||
(&nodesSrc[0], &nodesSrc[arrayLength(nodesSrc)]);
|
||||
|
||||
DHTRoutingTableSerializer s;
|
||||
s.setLocalNode(localNode);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue