From: <sv...@op...> - 2024-08-05 10:56:31
|
Author: manx Date: Mon Aug 5 12:56:24 2024 New Revision: 21327 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21327 Log: [Var] ASIO::Modern: Update to v0.12.9 Modified: trunk/OpenMPT/include/asiomodern/OpenMPT.txt trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOConfig.hpp trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOVersion.hpp trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOstdcxx20bit.hpp Modified: trunk/OpenMPT/include/asiomodern/OpenMPT.txt ============================================================================== --- trunk/OpenMPT/include/asiomodern/OpenMPT.txt Sun Aug 4 23:58:03 2024 (r21326) +++ trunk/OpenMPT/include/asiomodern/OpenMPT.txt Mon Aug 5 12:56:24 2024 (r21327) @@ -1 +1 @@ -ASIO::Modern v0.12.8 +ASIO::Modern v0.12.9 Modified: trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOConfig.hpp ============================================================================== --- trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOConfig.hpp Sun Aug 4 23:58:03 2024 (r21326) +++ trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOConfig.hpp Mon Aug 5 12:56:24 2024 (r21327) @@ -46,6 +46,17 @@ #endif +#if ASIO_COMPILER_MSVC +#if defined(_MSVC_LANG) +#define ASIO_CXX_VERSION _MSVC_LANG +#else +#define ASIO_CXX_VERSION __cplusplus +#endif +#else +#define ASIO_CXX_VERSION __cplusplus +#endif + + #if ASIO_COMPILER_MSVC || ASIO_COMPILER_CLANG || ASIO_COMPILER_GCC || ASIO_SYSTEM_WINDOWS // assume #pragma pack support on Windows #define ASIO_HAVE_PRAGMA_PACK 1 Modified: trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOVersion.hpp ============================================================================== --- trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOVersion.hpp Sun Aug 4 23:58:03 2024 (r21326) +++ trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOVersion.hpp Mon Aug 5 12:56:24 2024 (r21327) @@ -17,7 +17,7 @@ #define ASIO_MODERNSDK_VERSION_MAJOR 0 #define ASIO_MODERNSDK_VERSION_MINOR 12 -#define ASIO_MODERNSDK_VERSION_PATCH 8 +#define ASIO_MODERNSDK_VERSION_PATCH 9 #define ASIO_MODERNSDK_VERSION_BUILD 0 Modified: trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOstdcxx20bit.hpp ============================================================================== --- trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOstdcxx20bit.hpp Sun Aug 4 23:58:03 2024 (r21326) +++ trunk/OpenMPT/include/asiomodern/include/ASIOModern/ASIOstdcxx20bit.hpp Mon Aug 5 12:56:24 2024 (r21327) @@ -9,7 +9,7 @@ -#if (__cplusplus > 202000L) +#if (ASIO_CXX_VERSION >= 202002L) #include <bit> namespace ASIO { inline namespace ASIO_VERSION_NAMESPACE { |