ObjFW  Check-in [650f34cb63]

Overview
Comment:Fix a typo.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | runtime
Files: files | file ages | folders
SHA3-256: 650f34cb63078f9bc4483fa3b52e3c75850cd484a1db6b60004feb940ffdb007
User & Date: js on 2012-03-06 17:09:45
Other Links: branch diff | manifest | tags
Context
2012-03-06
17:18
Get rid of src/runtime/asm and move the files to src/runtime. check-in: 3dbfc001c0 user: js tags: runtime
17:09
Fix a typo. check-in: 650f34cb63 user: js tags: runtime
16:53
Implement +[OFObject inheritMethodsFromClass:] for the ObjFW runtime. check-in: 54c4df2021 user: js tags: runtime
Changes

Modified src/runtime/protocol.m from [76c52af657] to [234e32b5ef].

58
59
60
61
62
63
64
65
66
67
68
	objc_global_mutex_unlock();

	return NO;
}
@end

BOOL
class_conformsToProtocl(Class cls, Protocol *p)
{
	return [p _isImplementedByClass: cls];
}







|



58
59
60
61
62
63
64
65
66
67
68
	objc_global_mutex_unlock();

	return NO;
}
@end

BOOL
class_conformsToProtocol(Class cls, Protocol *p)
{
	return [p _isImplementedByClass: cls];
}