Fixed clang warning and errors.

Test for the zero-length array with A2_ARRAY_LEN was commented out
since it is only used in unit test code and clang and old gcc 3.4.3
emit error.
This commit is contained in:
Tatsuhiro Tsujikawa 2012-03-01 00:02:29 +09:00
parent 037f1512db
commit e73c3c53ff
18 changed files with 67 additions and 68 deletions

View file

@ -65,11 +65,11 @@ void array_funTest::testArray_and()
void array_funTest::testArrayLength()
{
int64_t ia[] = { 1, 2, 3, 4, 5 };
int64_t zeroLengthArray[] = {};
CPPUNIT_ASSERT_EQUAL((size_t)5, A2_ARRAY_LEN(ia));
// This causes compile error under gcc v3.4.3 opensolaris 5.11
CPPUNIT_ASSERT_EQUAL((size_t)0, A2_ARRAY_LEN(zeroLengthArray));
// 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));
}
namespace {