From: <sv...@op...> - 2024-04-26 14:58:21
|
Author: manx Date: Fri Apr 26 16:58:08 2024 New Revision: 20657 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20657 Log: Merged revision(s) 20654 from trunk/OpenMPT: [Mod] Include mpt/check before mpt/base in stdafx.h. ........ Modified: branches/OpenMPT-1.31/ (props changed) branches/OpenMPT-1.31/common/stdafx.h Modified: branches/OpenMPT-1.31/common/stdafx.h ============================================================================== --- branches/OpenMPT-1.31/common/stdafx.h Fri Apr 26 16:57:35 2024 (r20656) +++ branches/OpenMPT-1.31/common/stdafx.h Fri Apr 26 16:58:08 2024 (r20657) @@ -63,7 +63,6 @@ #endif -#include "mpt/base/span.hpp" #include "mpt/check/compiler.hpp" #include "mpt/check/libc.hpp" #if defined(MPT_WITH_MFC) @@ -72,6 +71,8 @@ #if MPT_OS_WINDOWS #include "mpt/check/windows.hpp" #endif + +#include "mpt/base/span.hpp" #include "mpt/exception/exception.hpp" #include "mpt/exception/exception_text.hpp" #include "mpt/out_of_memory/out_of_memory.hpp" |