1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-24 17:01:35 +01:00

default case warning

This commit is contained in:
kotofos
2014-12-03 11:53:16 +06:00
parent 1aeb4468af
commit f6bb716220

View File

@@ -677,6 +677,8 @@ void UnityAssertFloatSpecial(const _UF actual,
else else
is_trait = 1; is_trait = 1;
break; break;
default:
;
} }
if (is_trait != should_be_trait) if (is_trait != should_be_trait)
@@ -837,6 +839,8 @@ void UnityAssertDoubleSpecial(const _UD actual,
else else
is_trait = 1; is_trait = 1;
break; break;
default:
;
} }
if (is_trait != should_be_trait) if (is_trait != should_be_trait)