1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 17:24:47 +01:00

Add explicit <cstdlib> include to Range.hpp (#24918)

LLVM libc++ 21 shuffled around some includes internally, causing cstdlib
to no longer be transitively included here. Explicitly include it for
size_t.
This commit is contained in:
Violet Purcell
2025-08-07 16:03:03 -04:00
committed by GitHub
parent a146f38194
commit 1abd50ff1f

View File

@@ -10,6 +10,7 @@
#pragma once
#include <cmath>
#include <cstdlib>
#include <type_traits>
template<typename T>