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>2016-02-03 17:00:55 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-02-03 17:00:55 +0300
commit3aa74828ab627723e6c98163bf6344ef1f009bcf (patch)
tree7dbb827dbb794d8f71ecd4c8047a8d0fff272f6c /intern/cycles/subd
parent87cbcd697b778b8c5500634a5193bdf67700b3a6 (diff)
Cycles: Cleanup, indentation and braces
Diffstat (limited to 'intern/cycles/subd')
-rw-r--r--intern/cycles/subd/subd_mesh.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern/cycles/subd/subd_mesh.cpp b/intern/cycles/subd/subd_mesh.cpp
index 17a730e5efe..98185004f5d 100644
--- a/intern/cycles/subd/subd_mesh.cpp
+++ b/intern/cycles/subd/subd_mesh.cpp
@@ -204,9 +204,10 @@ void OpenSubdMesh::add_face(int *index, int num)
if(opposite && opposite->GetOpposite())
assert("A non-manifold edge incident to more than 2 faces was found\n");
- if(origin->GetEdge(destination))
+ if(origin->GetEdge(destination)) {
assert("An edge connecting two vertices was specified more than once."
- "It's likely that an incident face was flipped\n");
+ "It's likely that an incident face was flipped\n");
+ }
}
#endif