linked_list: drop user data field

This commit is contained in:
Matthias Ringwald 2016-02-10 10:57:25 +01:00
parent a3a586663a
commit ab49db6128

View File

@ -48,7 +48,6 @@ extern "C" {
typedef struct btstack_linked_item {
struct btstack_linked_item *next; // <-- next element in list, or NULL
void *user_data; // <-- pointer to struct base
} btstack_linked_item_t;
typedef btstack_linked_item_t * btstack_linked_list_t;