mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +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
|
@ -54,7 +54,7 @@ void HttpHeaderTest::testGet()
|
|||
h.put("a", "101");
|
||||
h.put("B", "200");
|
||||
|
||||
std::deque<std::string> r(h.get("A"));
|
||||
std::vector<std::string> r(h.get("A"));
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)2, r.size());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("100"), r[0]);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("101"), r[1]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue