mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Suppress warning of (deliberate) null pointer deference
This commit is contained in:
parent
4f3c95c589
commit
eeaf0227f7
1 changed files with 2 additions and 0 deletions
|
@ -2291,7 +2291,9 @@ A way to force a bus error for development reasons
|
||||||
=================
|
=================
|
||||||
*/
|
*/
|
||||||
static void Com_Crash_f( void ) {
|
static void Com_Crash_f( void ) {
|
||||||
|
#ifndef __clang_analyzer__
|
||||||
* ( volatile int * ) 0 = 0x12345678;
|
* ( volatile int * ) 0 = 0x12345678;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue