ObjFW  Check-in [3b58706d32]

Overview
Comment:Remove inline that lead to a missing symbol.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3b58706d32f4baf563d06120e3ae914c7ef2e5c2a67fff07fcb57533e220ec70
User & Date: js on 2012-11-30 15:40:49
Other Links: manifest | tags
Context
2012-11-30
16:09
Make runtime API more similar to Apple's. check-in: 120caad331 user: js tags: trunk
15:40
Remove inline that lead to a missing symbol. check-in: 3b58706d32 user: js tags: trunk
15:37
Remove functions from runtime.h that don't exist. check-in: 2b0389eeeb user: js tags: trunk
Changes

Modified src/runtime/class.m from [d1989ac845] to [fb20a2022a].

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;