mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
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:
parent
037f1512db
commit
e73c3c53ff
18 changed files with 67 additions and 68 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue