diff --git a/Macros.h b/Macros.h index bb3a90e0..00413f4e 100644 --- a/Macros.h +++ b/Macros.h @@ -10,7 +10,7 @@ #endif #ifndef CLAMP -#define CLAMP(x, low, high) (assert(low < high), ((x) > (high)) ? (high) : MAXIMUM(x, low)) +#define CLAMP(x, low, high) (assert((low) < (high)), ((x) > (high)) ? (high) : MAXIMUM(x, low)) #endif #ifndef ARRAYSIZE