From f8208f21730b21f284d9608a5b39f8ac1d15199b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Tue, 20 Oct 2020 13:14:32 +0200 Subject: Drop tabs in source indentions --- Macros.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Macros.h') diff --git a/Macros.h b/Macros.h index 2f92acb1..1064dadb 100644 --- a/Macros.h +++ b/Macros.h @@ -4,15 +4,15 @@ #include // IWYU pragma: keep #ifndef MINIMUM -#define MINIMUM(a, b) ((a) < (b) ? (a) : (b)) +#define MINIMUM(a, b) ((a) < (b) ? (a) : (b)) #endif #ifndef MAXIMUM -#define MAXIMUM(a, b) ((a) > (b) ? (a) : (b)) +#define MAXIMUM(a, b) ((a) > (b) ? (a) : (b)) #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 -- cgit v1.2.3