mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-09-15 06:39:57 +00:00
Add another test for function pointers which should be ignored.
This commit is contained in:
@@ -61,3 +61,15 @@ struct struct_to_be_ignored {
|
|||||||
} variant;
|
} variant;
|
||||||
void (*a_function_pointer_in_a_struct)(void *);
|
void (*a_function_pointer_in_a_struct)(void *);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
uint32_t a;
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
uint32_t bb;
|
||||||
|
float bc;
|
||||||
|
float bd;
|
||||||
|
} b;
|
||||||
|
int (*another_function_pointer_in_a_struct) (void);
|
||||||
|
} another_thing_that_should_get_ignored;
|
||||||
|
|||||||
Reference in New Issue
Block a user