ObjFW  Check-in [99766b222c]

Overview
Comment:Remove inline that lead to a missing symbol.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.7
Files: files | file ages | folders
SHA3-256: 99766b222c6b6d11349412033820315204f56adeb21a780e6271e5a391c9157a
User & Date: js on 2012-11-30 15:41:19
Other Links: branch diff | manifest | tags
Context
2012-12-01
18:29
Increase library version minor. check-in: e1996effd2 user: js tags: 0.7
2012-11-30
15:41
Remove inline that lead to a missing symbol. check-in: 99766b222c user: js tags: 0.7
15:41
Remove functions from runtime.h that don't exist. check-in: e661bf4171 user: js tags: 0.7
Changes

Modified src/runtime/class.m from [cde4d41e21] to [2c7fbf6833].

350
351
352
353
354
355
356
357
358
359
360
361
362
363
364

			if (load_queue == NULL)
				OBJC_ERROR("Not enough memory for load queue!");
		}
	}
}

inline Class
objc_lookup_class(const char *name)
{
	Class cls = objc_classname_to_class(name);

	if (cls == NULL)
		return Nil;








|







350
351
352
353
354
355
356
357
358
359
360
361
362
363
364

			if (load_queue == NULL)
				OBJC_ERROR("Not enough memory for load queue!");
		}
	}
}

Class
objc_lookup_class(const char *name)
{
	Class cls = objc_classname_to_class(name);

	if (cls == NULL)
		return Nil;