mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
e4bb5c8048
This allows me to disable -Werror in the Makefile but still have the build tests work properly and not fail when they shouldn't.
12 lines
84 B
R
12 lines
84 B
R
#pragma warn error
|
|
|
|
@interface foo
|
|
{
|
|
id isa;
|
|
}
|
|
@end
|
|
|
|
void bar ()
|
|
{
|
|
foo foos[1];
|
|
}
|