1
1

Remove the set_list_size inline function

This commit was SVN r1490.
Этот коммит содержится в:
Jeff Squyres 2004-06-28 23:52:06 +00:00
родитель c8367bfe6d
Коммит 735787e12b
2 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -62,11 +62,6 @@ static inline size_t ompi_list_get_size(ompi_list_t* list)
return list->ompi_list_length;
}
static inline void ompi_list_set_size(ompi_list_t* list, size_t size)
{
list->ompi_list_length=size;
}
/*
* Returns first item on list, but does not remove it from the list.
*/

Просмотреть файл

@ -28,7 +28,6 @@ int main(int argc, char **argv)
test_init("ompi_list_t");
/* initialize list */
ompi_list_set_size(&list,0Xdeadbeaf);
OBJ_CONSTRUCT(&list, ompi_list_t);
/* check length of list */