ObjFW  Diff

Differences From Artifact [a5d08e3dd3]:

To Artifact [f95cee8e97]:


138
139
140
141
142
143
144

145



146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
	}

	return self;
}

- (void)dealloc
{

	of_options_parser_option_t *iter;




	free(_options);
	[_longOptions release];

	if (_options != NULL)
		for (iter = _options;
		    iter->shortOption != '\0' || iter->longOption != nil;
		    iter++)
			[iter->longOption release];

	[_arguments release];
	[_argument release];

	[super dealloc];
}

- (of_unichar_t)nextOption







>
|
>
>
>




<
<
<
<
<
<







138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153






154
155
156
157
158
159
160
	}

	return self;
}

- (void)dealloc
{
	if (_options != NULL)
		for (of_options_parser_option_t *iter = _options;
		    iter->shortOption != '\0' || iter->longOption != nil;
		    iter++)
			[iter->longOption release];

	free(_options);
	[_longOptions release];







	[_arguments release];
	[_argument release];

	[super dealloc];
}

- (of_unichar_t)nextOption