From c7a029a0515b87725926925b6d45af1a619d5f5d Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Mon, 30 Sep 2024 10:47:57 -0400 Subject: [PATCH] Remove duplicated condition check --- include/platform.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/platform.hpp b/include/platform.hpp index db3ce45b..ea0d65c2 100644 --- a/include/platform.hpp +++ b/include/platform.hpp @@ -57,7 +57,7 @@ #endif // MingGW and Cygwin need POSIX functions which are not standard C explicitly enabled -#if defined(__MINGW32__) || defined(__MINGW32__) || defined(__CYGWIN__) +#if defined(__MINGW32__) || defined(__CYGWIN__) #define _POSIX_C_SOURCE 200809L #endif