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

@ -61,11 +61,11 @@ void array_funTest::testArray_and()
void array_funTest::testArrayLength()
{
int64_t ia[] = { 1, 2, 3, 4, 5 };
CPPUNIT_ASSERT_EQUAL((size_t)5, A2_ARRAY_LEN(ia));
CPPUNIT_ASSERT_EQUAL((size_t)5, arraySize(ia));
// This causes compile error under clang and gcc v3.4.3 opensolaris
// 5.11
// int64_t zeroLengthArray[] = {};
// CPPUNIT_ASSERT_EQUAL((size_t)0, A2_ARRAY_LEN(zeroLengthArray));
// CPPUNIT_ASSERT_EQUAL((size_t)0, arraySize(zeroLengthArray));
}
namespace {