summaryrefslogtreecommitdiff
path: root/games-simulation
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mm1ke@gentoo.org>2025-12-03 18:52:02 +0100
committerMichael Mair-Keimberger <mm1ke@gentoo.org>2025-12-03 18:52:02 +0100
commitb3d17604186fa335e79355cc5c696345ebdd05f1 (patch)
tree760ea606bf2cc29939bb021e53cd45c324192b54 /games-simulation
parent2a0cd3c890e680080a2985c03de17acc14dbb558 (diff)
games-simulation/openrct2: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mm1ke@gentoo.org>
Diffstat (limited to 'games-simulation')
-rw-r--r--games-simulation/openrct2/files/openrct2-0.4.21-libcxx-21-cstdlib.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/games-simulation/openrct2/files/openrct2-0.4.21-libcxx-21-cstdlib.patch b/games-simulation/openrct2/files/openrct2-0.4.21-libcxx-21-cstdlib.patch
deleted file mode 100644
index a0b63171621a..000000000000
--- a/games-simulation/openrct2/files/openrct2-0.4.21-libcxx-21-cstdlib.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-From https://github.com/OpenRCT2/OpenRCT2/commit/1abd50ff1ff75360c9ad77ec07be15d97d7d643a Mon Sep 17 00:00:00 2001
-From: Violet Purcell <66446404+vimproved@users.noreply.github.com>
-Date: Thu, 7 Aug 2025 16:03:03 -0400
-Subject: [PATCH] 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.
---- a/src/openrct2/core/Range.hpp
-+++ b/src/openrct2/core/Range.hpp
-@@ -10,6 +10,7 @@
- #pragma once
-
- #include <cmath>
-+#include <cstdlib>
- #include <type_traits>
-
- template<typename T>