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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-04-29 04:19:05 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-04-29 04:19:05 +0400
commitd8e12e8710f7c24e046c132e84eff416b8e8d06c (patch)
tree2403108c6d97107d0a7d2b670c65644def72f091 /source/blender/freestyle/intern/view_map/Silhouette.h
parentf11926795fa30ce45985af9e92d4b83d9c517f73 (diff)
Suppressed "unused but set variable" warnings.
Diffstat (limited to 'source/blender/freestyle/intern/view_map/Silhouette.h')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/Silhouette.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/view_map/Silhouette.h b/source/blender/freestyle/intern/view_map/Silhouette.h
index b75f023ee8d..369267af8d9 100755
--- a/source/blender/freestyle/intern/view_map/Silhouette.h
+++ b/source/blender/freestyle/intern/view_map/Silhouette.h
@@ -1196,7 +1196,6 @@ public:
Vec3r B = ioB->point3D();
Vec3r a = ioA->point2D();
Vec3r b = ioB->point2D();
- SVertex *svA, *svB;
Vec3r newpoint3d,newpoint2d;
vector<SVertex*> intersections;
@@ -1231,8 +1230,8 @@ public:
sv!=svend;
sv++)
{
- svA = fe->vertexA();
- svB = fe->vertexB();
+ //SVertex *svA = fe->vertexA();
+ SVertex *svB = fe->vertexB();
// We split edge AB into AA' and A'B. A' and A'B are created.
// AB becomes (address speaking) AA'. B is updated.