Cleanup: Proper silencing of unused vars( for now).

This commit is contained in:
Bastien Montagne 2017-12-01 17:58:15 +01:00
parent 3d50722cf5
commit bbb86a85fc
1 changed files with 1 additions and 1 deletions

View File

@ -2341,7 +2341,7 @@ static int make_override_exec(bContext *C, wmOperator *UNUSED(op))
Object *locobj, *refobj = CTX_data_active_object(C);
locobj = (Object *)BKE_override_static_create_from(bmain, &refobj->id);
(void) locobj;
UNUSED_VARS(locobj);
WM_event_add_notifier(C, NC_WINDOW, NULL);