ObjFW  Check-in [998478014d]

Overview
Comment:Make GCC happy again
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 998478014d7e7074fa57496dafe7a8e2004b7e049618212e2d2975d75ba259ea
User & Date: js on 2023-11-04 13:13:31
Other Links: manifest | tags
Context
2023-11-04
14:43
OFAllocObject: Fix calculation of extra alignment check-in: 648d29a33e user: js tags: trunk
13:13
Make GCC happy again check-in: 998478014d user: js tags: trunk
13:10
OFMatrix4x4: Restore SSE4.1 code check-in: 0eb97e4612 user: js tags: trunk
Changes

Modified src/OFMatrix4x4.m from [52a22d3f60] to [6d7dc755b7].

371
372
373
374
375
376
377
378


379
380
381
382
383
384
385
371
372
373
374
375
376
377

378
379
380
381
382
383
384
385
386







-
+
+







- (float (*)[4])values
{
	return _values;
}

- (instancetype)copy
{
	return [[OFMatrix4x4 alloc] initWithValues: _values];
	return [[OFMatrix4x4 alloc]
	    initWithValues: (const float (*)[4])_values];
}

- (bool)isEqual: (OFMatrix4x4 *)matrix
{
	if (![matrix isKindOfClass: [OFMatrix4x4 class]])
		return false;