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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-29 23:15:56 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-29 23:15:56 +0400
commitaa2a0e4ab00a803743141af258a1ff1515182420 (patch)
tree99d7773978e3e9f93ee9c07cad956539aaa94eca /source/blender/freestyle/intern/view_map
parentcd60848dd01ba91bf9e51ce8f0488115db91ad35 (diff)
More build fixes for visual studio 2012.
Patch #35019, #35131 and #35152 by Jurgen Herrmann.
Diffstat (limited to 'source/blender/freestyle/intern/view_map')
-rw-r--r--source/blender/freestyle/intern/view_map/Functions1D.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/view_map/Functions1D.cpp b/source/blender/freestyle/intern/view_map/Functions1D.cpp
index 5d12c5bb251..c66d8b8bfe7 100644
--- a/source/blender/freestyle/intern/view_map/Functions1D.cpp
+++ b/source/blender/freestyle/intern/view_map/Functions1D.cpp
@@ -220,7 +220,7 @@ void getOccludeeF1D(Interface1D& inter, set<ViewShape*>& oShapes)
if (ve) {
ViewShape *aShape = ve->aShape();
if (aShape == 0) {
- oShapes.insert(0);
+ oShapes.insert((ViewShape*)0);
return;
}
oShapes.insert(aShape);