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:
@@ -487,14 +487,12 @@ typedef enum
|
|||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
UNITY_WITHIN = 0x0,
|
|
||||||
UNITY_EQUAL_TO = 0x1,
|
UNITY_EQUAL_TO = 0x1,
|
||||||
UNITY_GREATER_THAN = 0x2,
|
UNITY_GREATER_THAN = 0x2,
|
||||||
UNITY_GREATER_OR_EQUAL = 0x2 + UNITY_EQUAL_TO,
|
UNITY_GREATER_OR_EQUAL = 0x2 + UNITY_EQUAL_TO,
|
||||||
UNITY_SMALLER_THAN = 0x4,
|
UNITY_SMALLER_THAN = 0x4,
|
||||||
UNITY_SMALLER_OR_EQUAL = 0x4 + UNITY_EQUAL_TO,
|
UNITY_SMALLER_OR_EQUAL = 0x4 + UNITY_EQUAL_TO,
|
||||||
UNITY_NOT_EQUAL = 0x0,
|
UNITY_NOT_EQUAL = 0x6
|
||||||
UNITY_UNKNOWN
|
|
||||||
} UNITY_COMPARISON_T;
|
} UNITY_COMPARISON_T;
|
||||||
|
|
||||||
#ifndef UNITY_EXCLUDE_FLOAT
|
#ifndef UNITY_EXCLUDE_FLOAT
|
||||||
|
|||||||
Reference in New Issue
Block a user