ObjFW  Check-in [e3cf8b4edd]

Overview
Comment:One more tiny fix for -Wsign-compare
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e3cf8b4eddda209e351ca89ec97b20d806b0732b7133ba0b7eb880b6b5bc70a4
User & Date: js on 2016-05-07 16:34:43
Other Links: manifest | tags
Context
2016-05-07
19:08
Fix super lookup of missing methods on x86(_64) check-in: d4d5a27ccd user: js tags: trunk
16:34
One more tiny fix for -Wsign-compare check-in: e3cf8b4edd user: js tags: trunk
15:28
PLATFORMS.md: Remove limitations for bare bone ARM check-in: ebf1f2c0ab user: js tags: trunk
Changes

Modified tests/ForwardingTests.m from [b16f92e712] to [f37e37e52a].

132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
- (uint32_t)forwardingTargetTest: (intptr_t)a0
				: (intptr_t)a1
				: (double)a2
				: (double)a3
{
	OF_ENSURE(self == target);

	if (a0 != 0xDEADBEEF)
		return 0;
	if (a1 != -1)
		return 0;
	if (a2 != 1.25)
		return 0;
	if (a3 != 2.75)
		return 0;







|







132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
- (uint32_t)forwardingTargetTest: (intptr_t)a0
				: (intptr_t)a1
				: (double)a2
				: (double)a3
{
	OF_ENSURE(self == target);

	if (a0 != (intptr_t)0xDEADBEEF)
		return 0;
	if (a1 != -1)
		return 0;
	if (a2 != 1.25)
		return 0;
	if (a3 != 2.75)
		return 0;