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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-06-15 11:19:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-06-15 11:19:33 +0300
commit826f3c715ce176894a558540ef97dc47125df12b (patch)
tree732b443a794061684a29494b10aee50d8e6a7650 /source/blender/blenkernel/BKE_object_facemap.h
parent35ec72bcb8654fd5f7bac6b3d0ccb95db1134ec6 (diff)
Fix strict cflags compilation after recent const changes
Diffstat (limited to 'source/blender/blenkernel/BKE_object_facemap.h')
-rw-r--r--source/blender/blenkernel/BKE_object_facemap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_object_facemap.h b/source/blender/blenkernel/BKE_object_facemap.h
index 332b2851e85..2607e5aa2dd 100644
--- a/source/blender/blenkernel/BKE_object_facemap.h
+++ b/source/blender/blenkernel/BKE_object_facemap.h
@@ -44,7 +44,7 @@ void BKE_object_facemap_clear(struct Object *ob);
int BKE_object_facemap_name_index(struct Object *ob, const char *name);
void BKE_object_facemap_unique_name(struct Object *ob, struct bFaceMap *fmap);
struct bFaceMap *BKE_object_facemap_find_name(struct Object *ob, const char *name);
-void BKE_object_facemap_copy_list(struct ListBase *outbase, struct ListBase *inbase);
+void BKE_object_facemap_copy_list(struct ListBase *outbase, const struct ListBase *inbase);
#ifdef __cplusplus
}