mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-23 16:35:58 +01:00
Primarily - * Added "static" to static functions. * Added proper signature with "void" to functions without arguments. * Marked unused arguments with "(void)". * Removed entirely unused static functions. * Added "const" to preserve const-correctness. * Added function prototypes for external functions.
12 lines
331 B
C
12 lines
331 B
C
|
|
#include "ProductionCode2.h"
|
|
|
|
char* ThisFunctionHasNotBeenTested(int Poor, char* LittleFunction)
|
|
{
|
|
(void)Poor;
|
|
(void)LittleFunction;
|
|
//Since There Are No Tests Yet, This Function Could Be Empty For All We Know.
|
|
// Which isn't terribly useful... but at least we put in a TEST_IGNORE so we won't forget
|
|
return (char*)0;
|
|
}
|