- Fixed a gcc warning when -Wall enabled. (Thanks gjcamann)

This commit is contained in:
Mark VanderVoord
2013-09-22 10:58:36 -04:00
parent dddf13595d
commit ff1339ca5a

View File

@ -14,7 +14,7 @@
#define UNITY_SKIP_EXECUTION { if ((Unity.CurrentTestFailed != 0) || (Unity.CurrentTestIgnored != 0)) {return;} }
#define UNITY_PRINT_EOL { UNITY_OUTPUT_CHAR('\n'); }
struct _Unity Unity = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , { 0 } };
struct _Unity Unity = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , {{{ 0 }}} };
const char* UnityStrNull = "NULL";
const char* UnityStrSpacer = ". ";