2010-04-27 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Updated doc
	* test/array_funTest.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2010-04-27 14:18:03 +00:00
parent 2141656346
commit a02c6238bf
2 changed files with 6 additions and 0 deletions

View file

@ -68,6 +68,7 @@ void array_funTest::testArrayLength()
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));
}