forked from mpaland/printf
-
Notifications
You must be signed in to change notification settings - Fork 62
Closed
Labels
bugSomething isn't workingSomething isn't workingresolved-on-developA changeset fixing this issue has been commiutted to the development branchA changeset fixing this issue has been commiutted to the development branch
Description
It looks like there is some inconsistency introduced with the addition of PRINTF_ALIAS_STANDARD_FUNCTION_NAMES_SOFT which means that if you want to do HARD replacement, you must include both PRINTF_ALIAS_STANDARD_FUNCTION_NAMES=1 and PRINTF_ALIAS_STANDARD_FUNCTION_NAMES_HARD=1. I fixed this on my local copy by getting rid of PRINTF_ALIAS_STANDARD_FUNCTION_NAMES altogether.
I deleted:
Lines 65 to 67 in f8ed5a9
| #ifndef PRINTF_ALIAS_STANDARD_FUNCTION_NAMES | |
| #define PRINTF_ALIAS_STANDARD_FUNCTION_NAMES 0 | |
| #endif |
and I changed:
Line 57 in f8ed5a9
| #if PRINTF_ALIAS_STANDARD_FUNCTION_NAMES |
to
#if PRINTF_ALIAS_STANDARD_FUNCTION_NAMES_HARD
The documentation could also use an update to clarify this new feature.
Thanks!
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingresolved-on-developA changeset fixing this issue has been commiutted to the development branchA changeset fixing this issue has been commiutted to the development branch