- element destructor => private

This commit is contained in:
Martin Willi
2005-11-08 12:37:31 +00:00
parent 8491b29826
commit 623fec54c8
2 changed files with 16 additions and 16 deletions
-8
View File
@@ -42,14 +42,6 @@ struct linked_list_element_s {
* value of a list item
*/
void *value;
/**
* @brief Destroys a linked_list_element object
*
* @param linked_list_element_t calling object
* @returns SUCCESS if succeeded, FAILED otherwise
*/
status_t (*destroy) (linked_list_element_t *this);
};
/**