aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-06-22 11:25:22 +0200
committerGitHub <noreply@github.com>2023-06-22 11:25:22 +0200
commit40bedacfdf35116d560580210563339a16457679 (patch)
tree0c8ec829c817cd38e3560cf67c239baeea54469c /patches
parentf09a87c348bafb134e3f5eca0ef654cc2a20ceef (diff)
parentccb580f95db5024962ff91ef522143646a3d1835 (diff)
Merge pull request #327 from lorrding/patch_v0.11.0-dev.3747
Fix breaking change in builtin casts functions
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/036_enums2.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/patches/036_enums2.patch b/patches/patches/036_enums2.patch
index c20905a..367b780 100644
--- a/patches/patches/036_enums2.patch
+++ b/patches/patches/036_enums2.patch
@@ -7,6 +7,6 @@
---
> \\ <span style="color: #{x:0>6}">Blue</span>
62c62
-< @enumToInt(???), // Oops! We're missing something!
+< @intFromEnum(???), // Oops! We're missing something!
---
-> @enumToInt(Color.blue), // Oops! We're missing something!
+> @intFromEnum(Color.blue), // Oops! We're missing something!