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-04-26 18:20:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-26 18:25:15 +0400
commit483d8da9bcfa1eeef950ba45633c5fb49fb7f93b (patch)
tree7401d2e6b3fab99a2738a7497ef851117b455e02 /source/blender/blenlib/intern/scanfill.c
parenta2c107aef1c8aaf7deb17dd0319bc07e55cb4293 (diff)
Code cleanup: use 'const' for arrays (blenlib)
Diffstat (limited to 'source/blender/blenlib/intern/scanfill.c')
-rw-r--r--source/blender/blenlib/intern/scanfill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/scanfill.c b/source/blender/blenlib/intern/scanfill.c
index 69049b51f87..05e4984d9a3 100644
--- a/source/blender/blenlib/intern/scanfill.c
+++ b/source/blender/blenlib/intern/scanfill.c
@@ -865,7 +865,7 @@ unsigned int BLI_scanfill_calc_ex(ScanFillContext *sf_ctx, const int flag, const
/* Newell's Method */
/* Similar code used elsewhere, but this checks for double ups
* which historically this function supports so better not change */
- float *v_prev;
+ const float *v_prev;
zero_v3(n);
eve = sf_ctx->fillvertbase.last;