ObjFW  Check-in [f90224870e]

Overview
Comment:Minor style fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f90224870e2a606807a867490d7c900ccf5bb7c07be38fa9198e5a97e39bb209
User & Date: js on 2019-11-24 20:54:45
Other Links: manifest | tags
Context
2019-11-24
22:23
runtime: Remove duplicate structs for ABI check-in: c6d2de4312 user: js tags: trunk
20:54
Minor style fix check-in: f90224870e user: js tags: trunk
20:13
configure: Correct bundle version check-in: c6ab31d0af user: js tags: trunk
Changes

Modified src/OFXMLProcessingInstructions.m from [b4f91e54e3] to [a1aa347f59].

83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
		return true;

	if (![object isKindOfClass: [OFXMLProcessingInstructions class]])
		return false;

	processingInstructions = object;

	return ([processingInstructions->_processingInstructions
	    isEqual: _processingInstructions]);
}

- (uint32_t)hash
{
	return _processingInstructions.hash;
}








|
|







83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
		return true;

	if (![object isKindOfClass: [OFXMLProcessingInstructions class]])
		return false;

	processingInstructions = object;

	return [processingInstructions->_processingInstructions
	    isEqual: _processingInstructions];
}

- (uint32_t)hash
{
	return _processingInstructions.hash;
}