mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
793112de9a
structptr.r is actually usable for automated testing when I get around to it.
10 lines
209 B
R
10 lines
209 B
R
#include <Object.h>
|
|
|
|
@implementation Object
|
|
- (void) doesNotRecognizeSelector: (SEL)aSelector
|
|
{
|
|
[self error: "%s does not recognize %s",
|
|
object_get_class_name (self),
|
|
sel_get_name (aSelector)];
|
|
}
|
|
@end
|