From 090bf1ca76d74c2fcbb45cf24a1d4ac40f5224cd Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Fri, 25 Jul 2025 16:32:54 +0200 Subject: [PATCH] Don't set ACE_HAS_TIME_T_LONG_MISMATCH when we have a 64bit build, _USE_32BIT_TIME_T can only be used when building 32bit * ACE/ace/config-win32-msvc-141.h: --- ACE/ace/config-win32-msvc-141.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ACE/ace/config-win32-msvc-141.h b/ACE/ace/config-win32-msvc-141.h index 60de5347739fd..31607318ea444 100644 --- a/ACE/ace/config-win32-msvc-141.h +++ b/ACE/ace/config-win32-msvc-141.h @@ -30,7 +30,7 @@ // time_t) and VC8 changed time_t to a 64-bit value even when compiling a // 32-bit application. Therefore, ace/Time_Value needs to rearrange a few // things for this compiler. See Time_Value.h for complete details. -#if !defined (_USE_32BIT_TIME_T) +#if !defined (_USE_32BIT_TIME_T) && !defined (ACE_WIN64) # define ACE_HAS_TIME_T_LONG_MISMATCH #endif