From: <sv...@op...> - 2024-08-29 15:03:52
|
Author: manx Date: Thu Aug 29 17:03:38 2024 New Revision: 21529 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21529 Log: [Fix] mpt/random/random.hpp: Add missing includes. Modified: trunk/OpenMPT/src/mpt/random/random.hpp Modified: trunk/OpenMPT/src/mpt/random/random.hpp ============================================================================== --- trunk/OpenMPT/src/mpt/random/random.hpp Mon Aug 26 21:52:18 2024 (r21528) +++ trunk/OpenMPT/src/mpt/random/random.hpp Thu Aug 29 17:03:38 2024 (r21529) @@ -8,8 +8,11 @@ #include "mpt/base/namespace.hpp" #include "mpt/random/engine.hpp" +#include <limits> #include <type_traits> +#include <cstddef> + namespace mpt { inline namespace MPT_INLINE_NS { |