mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 12:31:10 +00:00
[renderer] Clean up a weird default case
I don't know why I used the void 0 instead of a break when clang complained (probably rightly) about the default case hitting the end of the switch.
This commit is contained in:
parent
87dd4ee33d
commit
8868a5facf
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ R_StoreEfrags (const efrag_t *efrag)
|
|||
EntQueue_AddEntity (r_ent_queue, ent, model->type);
|
||||
break;
|
||||
default:
|
||||
(void)0;//FIXME for clang
|
||||
break;
|
||||
}
|
||||
efrag = efrag->leafnext;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue