mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-07-04 16:56:29 +08:00
Merge pull request #783 from rstahn/patch-1
Cleanup definition of UNITY_COMPARISON_T in unity_internals.h
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 = 0x8
|
||||||
UNITY_UNKNOWN
|
|
||||||
} UNITY_COMPARISON_T;
|
} UNITY_COMPARISON_T;
|
||||||
|
|
||||||
#ifndef UNITY_EXCLUDE_FLOAT
|
#ifndef UNITY_EXCLUDE_FLOAT
|
||||||
|
Reference in New Issue
Block a user