Author: manx
Date: Fri Apr 26 16:09:18 2024
New Revision: 20654
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20654
Log:
[Mod] Include mpt/check before mpt/base in stdafx.h.
Modified:
trunk/OpenMPT/common/stdafx.h
Modified: trunk/OpenMPT/common/stdafx.h
==============================================================================
--- trunk/OpenMPT/common/stdafx.h Fri Apr 26 16:08:15 2024 (r20653)
+++ trunk/OpenMPT/common/stdafx.h Fri Apr 26 16:09:18 2024 (r20654)
@@ -63,7 +63,6 @@
#endif
-#include "mpt/base/span.hpp"
#include "mpt/check/compiler.hpp"
#include "mpt/check/libc.hpp"
#include "mpt/check/libcxx.hpp"
@@ -73,6 +72,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"
|