mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
Replace A2_ARRAY_LEN with constexpr arraySize
This commit is contained in:
parent
b8b291187d
commit
ae631513f3
8 changed files with 13 additions and 18 deletions
|
@ -141,7 +141,7 @@ void DefaultPeerStorageTest::testCheckoutPeer()
|
|||
std::shared_ptr<Peer>(new Peer("192.168.0.2", 1000)),
|
||||
std::shared_ptr<Peer>(new Peer("192.168.0.3", 1000))
|
||||
};
|
||||
int len = A2_ARRAY_LEN(peers);
|
||||
int len = arraySize(peers);
|
||||
for(int i = 0; i < len; ++i) {
|
||||
ps.addPeer(peers[i]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue