1
0
mirror of https://github.com/DaveGamble/cJSON synced 2024-12-25 16:12:04 +00:00

tests/common.h: Remove unused prototype

This commit is contained in:
Max Bruckner 2017-03-01 22:42:10 +01:00
parent 412f4f7d62
commit 2e118df0cd

View File

@ -27,7 +27,6 @@
extern void reset(cJSON *item);
extern char *read_file(const char *filename);
extern cjbool assert_is_invalid(cJSON *item);
/* assertion helper macros */
#define assert_has_type(item, item_type) TEST_ASSERT_BITS_MESSAGE(0xFF, item_type, item->type, "Item doesn't have expected type.")