Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-11-24 14:01:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-24 14:03:25 +0300
commit08fd38cf52e4d540e6a7d3ceeaedf4a4c3858f55 (patch)
tree6087facbd6320c76f79cf07dd2b7d8a4f51bea58 /source/blender/editors/space_script
parented350d9a52ea4330bde73a6c89171fc6e067e6f7 (diff)
BLI_utildefines: add UNUSED_VARS() macro
Diffstat (limited to 'source/blender/editors/space_script')
-rw-r--r--source/blender/editors/space_script/script_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_script/script_edit.c b/source/blender/editors/space_script/script_edit.c
index 9077d0cf8ed..29a24cca799 100644
--- a/source/blender/editors/space_script/script_edit.c
+++ b/source/blender/editors/space_script/script_edit.c
@@ -131,7 +131,7 @@ static int script_reload_exec(bContext *C, wmOperator *op)
WM_event_add_notifier(C, NC_WINDOW, NULL);
return OPERATOR_FINISHED;
#else
- (void)C, (void)op; /* unused */
+ UNUSED_VARS(C, op);
return OPERATOR_CANCELLED;
#endif
}