diff --git a/src/unity.c b/src/unity.c index ad3ccb89171f8e9f64362b4dcd7a8105fede13e4..d9e082144d3601cd4f8dca72828b6d425da884e1 100644 --- a/src/unity.c +++ b/src/unity.c @@ -643,13 +643,13 @@ void UnityAssertFloatSpecial(const _UF actual, const UNITY_LINE_TYPE lineNumber, const UNITY_FLOAT_TRAIT_T style) { - UNITY_SKIP_EXECUTION; - const char* trait_names[] = { UnityStrInf, UnityStrNegInf, UnityStrNaN, UnityStrDet }; _U_SINT should_be_trait = ((_U_SINT)style & 1); _U_SINT is_trait = !should_be_trait; _U_SINT trait_index = style >> 1; + UNITY_SKIP_EXECUTION; + switch(style) { //To determine Inf / Neg Inf, we compare to an Inf / Neg Inf value we create on the fly @@ -803,13 +803,13 @@ void UnityAssertDoubleSpecial(const _UD actual, const UNITY_LINE_TYPE lineNumber, const UNITY_FLOAT_TRAIT_T style) { - UNITY_SKIP_EXECUTION; - const char* trait_names[] = { UnityStrInf, UnityStrNegInf, UnityStrNaN, UnityStrDet }; _U_SINT should_be_trait = ((_U_SINT)style & 1); _U_SINT is_trait = !should_be_trait; _U_SINT trait_index = style >> 1; + UNITY_SKIP_EXECUTION; + switch(style) { //To determine Inf / Neg Inf, we compare to an Inf / Neg Inf value we create on the fly