From 73ea68d0ca0bc4c629fef9e8352aa5e2c4fc4ee1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Nov 2020 09:30:38 +1100 Subject: [PATCH] Cleanup: unused variable --- source/blender/editors/space_api/spacetypes.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c index 40c83607f2c..10ce7b81954 100644 --- a/source/blender/editors/space_api/spacetypes.c +++ b/source/blender/editors/space_api/spacetypes.c @@ -271,7 +271,6 @@ void ED_region_draw_cb_exit(ARegionType *art, void *handle) void ED_region_draw_cb_draw(const bContext *C, ARegion *region, int type) { RegionDrawCB *rdc; - bool has_drawn_something = false; for (rdc = region->type->drawcalls.first; rdc; rdc = rdc->next) { if (rdc->type == type) {