Skip to content

Commit

Permalink
Revert "Fix [-Waddress-of-packed-member] warning"
Browse files Browse the repository at this point in the history
  • Loading branch information
FRASTM authored and fpistm committed Dec 1, 2021
1 parent b64df41 commit a526067
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/utility/STM32Cube_FW/stm_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,10 @@

/* Includes ------------------------------------------------------------------*/

#include "stdint.h"
#include "stdbool.h"
#include "stm32_wpan_common.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef PACKED_STRUCT _tListNode {
typedef struct _tListNode {
struct _tListNode *next;
struct _tListNode *prev;
} tListNode;
Expand Down Expand Up @@ -59,8 +55,4 @@ void LST_get_next_node(tListNode *ref_node, tListNode **node);

void LST_get_prev_node(tListNode *ref_node, tListNode **node);

#ifdef __cplusplus
}
#endif

#endif /* _STM_LIST_H_ */

0 comments on commit a526067

Please sign in to comment.