mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
Backport of upstream commit. Closes: https://bugs.gentoo.org/970708 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Part-of: https://codeberg.org/gentoo/gentoo/pulls/255 Merges: https://codeberg.org/gentoo/gentoo/pulls/255 Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
28 lines
821 B
Diff
28 lines
821 B
Diff
https://bugs.gentoo.org/970708
|
|
backported upstream patch for incomatible pointers. CI stuff
|
|
trimmed.
|
|
https://github.com/gnustep/libobjc2/commit/0e027650d960626b2119efabaebde20bb003a3db
|
|
From 0e027650d960626b2119efabaebde20bb003a3db Mon Sep 17 00:00:00 2001
|
|
From: Hugo Melder <service@hugomelder.com>
|
|
Date: Sat, 25 Oct 2025 13:50:36 +0200
|
|
Subject: [PATCH] Add Weekly CI (#352)
|
|
|
|
* CI: add weekly workflow
|
|
|
|
* CI: testing in feature branch
|
|
|
|
* Test/FastPathAlloc: fix compilation error
|
|
diff --git a/Test/FastPathAlloc.m b/Test/FastPathAlloc.m
|
|
index 340a8dd3..f1eb6244 100644
|
|
--- a/Test/FastPathAlloc.m
|
|
+++ b/Test/FastPathAlloc.m
|
|
@@ -96,7 +96,7 @@ + (instancetype)alloc
|
|
@implementation ShouldInitSubclassed
|
|
+ (instancetype) alloc
|
|
{
|
|
- return [ShouldInit alloc];
|
|
+ return (ShouldInitSubclassed *)[ShouldInit alloc];
|
|
}
|
|
@end
|
|
|