ObjFW  Check-in [46a4547451]

Overview
Comment:runtime/linklib: Fix a typo

This resulted in infinite recursion.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 46a4547451f13c78ce46155d259b551582cb626e0747faf28b6d381bb26c0e14
User & Date: js on 2018-05-20 10:30:01
Other Links: manifest | tags
Context
2018-05-20
11:33
OFURLHandler_file: Fix a typo check-in: d502e741c4 user: js tags: trunk
10:30
runtime/linklib: Fix a typo check-in: 46a4547451 user: js tags: trunk
10:25
runtime: Add missing nullability annotations check-in: 392fdaedc4 user: js tags: trunk
Changes

Modified src/runtime/linklib/linklib.m from [40fc377fab] to [7206ddd280].

388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
{
	return class_addMethod_m68k(cls, sel, imp, types);
}

IMP
class_replaceMethod(Class cls, SEL sel, IMP imp, const char *types)
{
	return class_replaceMethod(cls, sel, imp, types);
}

Class
object_getClass(id object)
{
	return object_getClass_m68k(object);
}







|







388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
{
	return class_addMethod_m68k(cls, sel, imp, types);
}

IMP
class_replaceMethod(Class cls, SEL sel, IMP imp, const char *types)
{
	return class_replaceMethod_m68k(cls, sel, imp, types);
}

Class
object_getClass(id object)
{
	return object_getClass_m68k(object);
}