Transform plain macro into a function macro, UNITY_PRINT_EOL()

This helps clarity and is more obvious, it looks like a print function
This commit is contained in:
jsalling
2015-11-23 21:03:46 -06:00
parent d4353166d2
commit de7cf8335e
3 changed files with 11 additions and 11 deletions

View File

@ -292,7 +292,7 @@ extern int UNITY_OUTPUT_CHAR(int);
#endif
#ifndef UNITY_PRINT_EOL
#define UNITY_PRINT_EOL UNITY_OUTPUT_CHAR('\n')
#define UNITY_PRINT_EOL() UNITY_OUTPUT_CHAR('\n')
#endif
#ifndef UNITY_OUTPUT_START