From a6e9f85f71a621ffa94d6277dcc13cc318c73c3d Mon Sep 17 00:00:00 2001 From: Fabian Zahn Date: Fri, 25 Jan 2019 07:00:32 +0100 Subject: [PATCH] Added examples for the configuration of UnityPrintFormatted and exclusion of --- examples/unity_config.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/examples/unity_config.h b/examples/unity_config.h index d586448..bc66e7f 100644 --- a/examples/unity_config.h +++ b/examples/unity_config.h @@ -176,6 +176,22 @@ /* #define UNITY_DOUBLE_PRECISION 0.001f */ +/* *************************** MISCELLANEOUS *********************************** + * Miscellaneous configuration options for Unity + **************************************************************************** */ + +/* Unity uses the stddef.h header included in the C standard library for the + * "NULL" macro. Define this in order to disable the include of stddef.h. If you + * do this, you have to make sure to provide your own "NULL" definition. + */ +/* #define UNITY_EXCLUDE_STDDEF_H */ + +/* Define this to enable the unity formatted print function: + * "UnityPrintFormatted" + */ +/* #define UNITY_INCLUDE_PRINT_FORMATTED */ + + /* *************************** TOOLSET CUSTOMIZATION *************************** * In addition to the options listed above, there are a number of other options * which will come in handy to customize Unity's behavior for your specific -- GitLab