Replace A2_ARRAY_LEN with constexpr arraySize

This commit is contained in:
Tatsuhiro Tsujikawa 2014-08-29 23:37:31 +09:00
parent b8b291187d
commit ae631513f3
8 changed files with 13 additions and 18 deletions

View file

@ -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]);
}