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

Merge pull request #783 from rstahn/patch-1

Cleanup definition of UNITY_COMPARISON_T in unity_internals.h
This commit is contained in:
Mark VanderVoord
2025-05-28 12:05:50 -04:00
committed by GitHub

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 = 0x8
} UNITY_COMPARISON_T;
#ifndef UNITY_EXCLUDE_FLOAT