ObjFW  Diff

Differences From Artifact [687a3c992c]:

To Artifact [f394a43240]:


56
57
58
59
60
61
62



63
64
65
66
67
68
69
			if (!strcmp(name, sel->name)) {
				rsel->uid = hash;
				return;
			}

			hash++;
		}



	}

	objc_sparsearray_set(selectors, hash, (void*)sel->name);
	rsel->uid = hash;
}

SEL







>
>
>







56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
			if (!strcmp(name, sel->name)) {
				rsel->uid = hash;
				return;
			}

			hash++;
		}

		if (hash >= last)
			ERROR("Selector slots exhausted!");
	}

	objc_sparsearray_set(selectors, hash, (void*)sel->name);
	rsel->uid = hash;
}

SEL