ObjFW  Check-in [9b2ca72edb]

Overview
Comment:Fix a warning when compiling with clang.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 9b2ca72edb844bd19e7f4889a83889aedd3ffb65909c3d37a5620afc01bbf44b
User & Date: js on 2011-09-13 00:09:39
Other Links: manifest | tags
Context
2011-09-13
00:34
Update buildsys. check-in: f0beedfa25 user: js tags: trunk
00:09
Fix a warning when compiling with clang. check-in: 9b2ca72edb user: js tags: trunk
2011-09-12
22:46
Fix a missing colon. check-in: c3c8614f44 user: js tags: trunk
Changes

Modified src/OFCountedSet.m from [a967923f91] to [4086910c39].

57
58
59
60
61
62
63
64
65


66
67
68
69

70

71
72
73
74
75
76
77
57
58
59
60
61
62
63


64
65
66
67
68
69
70

71
72
73
74
75
76
77
78







-
-
+
+




+
-
+








	return ret;
}

- initWithObject: (id)firstObject
       arguments: (va_list)arguments
{
	return [[OFCountedSet_hashtable alloc] initWithObject: firstObject
						    arguments: arguments];
	return (id)[[OFCountedSet_hashtable alloc] initWithObject: firstObject
							arguments: arguments];
}

- initWithSerialization: (OFXMLElement*)element
{
	return (id)[[OFCountedSet_hashtable alloc]
	return [[OFCountedSet_hashtable alloc] initWithSerialization: element];
	    initWithSerialization: element];
}

- retain
{
	return self;
}

Modified src/OFMutableSet.m from [550e7fe687] to [789db8d309].

56
57
58
59
60
61
62
63
64


65
66
67
68

69

70
71
72
73
74
75
76
56
57
58
59
60
61
62


63
64
65
66
67
68
69

70
71
72
73
74
75
76
77







-
-
+
+




+
-
+








	return ret;
}

- initWithObject: (id)firstObject
       arguments: (va_list)arguments
{
	return [[OFMutableSet_hashtable alloc] initWithObject: firstObject
						    arguments: arguments];
	return (id)[[OFMutableSet_hashtable alloc] initWithObject: firstObject
							arguments: arguments];
}

- initWithSerialization: (OFXMLElement*)element
{
	return (id)[[OFMutableSet_hashtable alloc]
	return [[OFMutableSet_hashtable alloc] initWithSerialization: element];
	    initWithSerialization: element];
}

- retain
{
	return self;
}

Modified src/OFSet.m from [3e40ae1337] to [6bb947808b].

56
57
58
59
60
61
62
63
64


65
66
67
68
69

70
71
72
73
74
75
76
56
57
58
59
60
61
62


63
64
65
66
67
68

69
70
71
72
73
74
75
76







-
-
+
+




-
+








	return ret;
}

- initWithObject: (id)firstObject
       arguments: (va_list)arguments
{
	return [[OFSet_hashtable alloc] initWithObject: firstObject
					     arguments: arguments];
	return (id)[[OFSet_hashtable alloc] initWithObject: firstObject
						 arguments: arguments];
}

- initWithSerialization: (OFXMLElement*)element
{
	return [[OFSet_hashtable alloc] initWithSerialization: element];
	return (id)[[OFSet_hashtable alloc] initWithSerialization: element];
}

- retain
{
	return self;
}