From 3dc5296dbbe7dc8c3e53c8319b005f8a4021619c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars-Christian=20F=C3=BCrstenberg?= Date: Fri, 23 Aug 2024 14:22:14 +0200 Subject: [PATCH] Fixed preprocessor compiler detection macro --- include/rexsapi/Types.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rexsapi/Types.hxx b/include/rexsapi/Types.hxx index 152a014..f10922e 100644 --- a/include/rexsapi/Types.hxx +++ b/include/rexsapi/Types.hxx @@ -28,7 +28,7 @@ #endif #if defined(__GNUC__) && __cplusplus >= 202002L -#if __GNUC__ > 14 || (__GNUC_ == 14 && __GNUC_MINOR__ > 1) +#if __GNUC__ > 14 || (__GNUC_ == 14 && __GNUC_MINOR__ >= 1) #define REXS_HAS_CHRONO_DATE #endif #endif