From c8551289f24ec49f2d22273e901d0b3cc1a541c1 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Tue, 24 Feb 2015 14:35:04 +0100 Subject: [PATCH] Visual Studio 2015 has 3 parameter wcstok * ACE/ace/config-win32-msvc-14.h: --- ACE/ace/config-win32-msvc-14.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ACE/ace/config-win32-msvc-14.h b/ACE/ace/config-win32-msvc-14.h index bac3aac0642a5..7aeaf75d5bf90 100644 --- a/ACE/ace/config-win32-msvc-14.h +++ b/ACE/ace/config-win32-msvc-14.h @@ -5,7 +5,7 @@ * * @brief Microsoft Visual C++ 14.0 configuration file. * - * This file is the ACE configuration file for Microsoft Visual C++ version 14. + * This file is the ACE configuration file for Microsoft Visual C++ version 2015. * * @note Do not include this file directly, include config-win32.h instead. */ @@ -29,11 +29,14 @@ #define ACE_HAS_POSIX_TIME 1 #define ACE_LACKS_TIMESPEC_T 1 -// According to MS the Visual Studio 2014 C-runtime has a +// According to MS the Visual Studio 2015 C-runtime has a // C99 compliant vsnprintf/vsnwprintf, this is a change compared to // previous versions #define ACE_HAS_C99_VSNPRINTF #define ACE_HAS_C99_VSNWPRINTF +// Visual Studio 2015 has 3 parameter wcstok +#define ACE_HAS_3_PARAM_WCSTOK + #include /**/ "ace/post.h" #endif /* ACE_CONFIG_WIN32_MSVC_14_H */