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:
authorDalai Felinto <dfelinto@gmail.com>2018-09-20 17:47:10 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-09-20 17:59:55 +0300
commitcffae363813e92148a27604a69b7576ba6962962 (patch)
treeb6044b493f3545e641ca1a81ab4a417bf723ecc1 /source/blender/blenkernel
parent9a91e67825200986bb0fc3f10380a1112b2c75ef (diff)
Fix build for MSVC: Remove trailing double semicolon
Not sure why but MSVC is complaining for some of those. In particular for the struct in BKE_subdiv_ccg.h. Those were the ones crashing here..
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_subdiv_ccg.h2
-rw-r--r--source/blender/blenkernel/intern/constraint.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_subdiv_ccg.h b/source/blender/blenkernel/BKE_subdiv_ccg.h
index ac90c5f7db3..cee7bce7f05 100644
--- a/source/blender/blenkernel/BKE_subdiv_ccg.h
+++ b/source/blender/blenkernel/BKE_subdiv_ccg.h
@@ -153,7 +153,7 @@ typedef struct SubdivCCG {
/* Vertices which are adjacent to faces
* Used for faster grid stitching, in the cost of extra memory.
*/
- int num_adjacent_vertices;;
+ int num_adjacent_vertices;
SubdivCCGAdjacentVertex *adjacent_vertices;
struct DMFlagMat *grid_flag_mats;
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index 4674b2c7554..188559d4b14 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -3974,7 +3974,7 @@ static void followtrack_evaluate(bConstraint *con, bConstraintOb *cob, ListBase
depsgraph,
data->camera ? data->camera : scene->camera);
- float ctime = DEG_get_ctime(depsgraph);;
+ float ctime = DEG_get_ctime(depsgraph);
float framenr;
if (data->flag & FOLLOWTRACK_ACTIVECLIP)