1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 00:15:58 +01:00

Cleanup definition of UNITY_COMPARISON_T in unity_internals.h

remove unused values UNITY_WITHIN and UNITY_UNKNOWN
update value UNITY_NOT_EQUAL
This commit is contained in:
Roland Stahn
2025-05-28 09:55:17 +02:00
committed by GitHub
parent 48fbee97f7
commit 5edda03c78

View File

@@ -487,14 +487,12 @@ typedef enum
typedef enum
{
UNITY_WITHIN = 0x0,
UNITY_EQUAL_TO = 0x1,
UNITY_GREATER_THAN = 0x2,
UNITY_GREATER_OR_EQUAL = 0x2 + UNITY_EQUAL_TO,
UNITY_SMALLER_THAN = 0x4,
UNITY_SMALLER_OR_EQUAL = 0x4 + UNITY_EQUAL_TO,
UNITY_NOT_EQUAL = 0x0,
UNITY_UNKNOWN
UNITY_NOT_EQUAL = 0x6
} UNITY_COMPARISON_T;
#ifndef UNITY_EXCLUDE_FLOAT