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:
authorKent Mein <mein@cs.umn.edu>2004-02-23 22:14:38 +0300
committerKent Mein <mein@cs.umn.edu>2004-02-23 22:14:38 +0300
commit6379637089f7534c10e9d8f1b43a487575b9a6e8 (patch)
tree7113c1a01651302c125594e4ef58993ca3d25bb9 /source/blender/src/booleanops.c
parenta0e9208c3542609817ee6571377bfaadf26ad413 (diff)
sorry more ;'s this should be the last of them though.
Kent
Diffstat (limited to 'source/blender/src/booleanops.c')
-rw-r--r--source/blender/src/booleanops.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/src/booleanops.c b/source/blender/src/booleanops.c
index 683911950ee..f2ab1825c4d 100644
--- a/source/blender/src/booleanops.c
+++ b/source/blender/src/booleanops.c
@@ -99,7 +99,7 @@ VertexIt_Destruct(
iterator->Step = NULL;
iterator->num_elements = 0;
-};
+}
static
int
@@ -203,7 +203,7 @@ FaceIt_Destruct(
iterator->Reset = NULL;
iterator->Step = NULL;
iterator->num_elements = 0;
-};
+}
static
@@ -214,7 +214,7 @@ FaceIt_Done(
// assume CSG_IteratorPtr is of the correct type.
FaceIt * iterator = (FaceIt *)it;
return(iterator->pos >= iterator->mesh->totface);
-};
+}
static
void
@@ -269,7 +269,7 @@ FaceIt_Fill(
fvdata->color[3] = (float) ((tface->col[i] >> 0) & 0xff);
}
}
-};
+}
static
@@ -279,7 +279,7 @@ FaceIt_Step(
) {
FaceIt * face_it = (FaceIt *)it;
face_it->pos ++;
-};
+}
static
void
@@ -317,7 +317,7 @@ FaceIt_Construct(
output->Reset = FaceIt_Reset;
output->num_elements = it->mesh->totface;
output->it = it;
-};
+}
/**
@@ -604,7 +604,7 @@ AddNewBlenderMesh(
ob_new->type= OB_MESH;
return ob_new;
-};
+}
/**
*