From 24eecb00de225377d5a77e082c1c4eab83f7eecd Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 3 Feb 2016 15:01:26 +0100 Subject: Cycles: Correction to asserts, they will never trigger before --- intern/cycles/subd/subd_mesh.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'intern/cycles/subd') diff --git a/intern/cycles/subd/subd_mesh.cpp b/intern/cycles/subd/subd_mesh.cpp index 98185004f5d..d7cb7b921ee 100644 --- a/intern/cycles/subd/subd_mesh.cpp +++ b/intern/cycles/subd/subd_mesh.cpp @@ -196,17 +196,17 @@ void OpenSubdMesh::add_face(int *index, int num) OsdHbrHalfEdge *opposite = destination->GetEdge(origin); if(origin==NULL || destination==NULL) - assert("An edge was specified that connected a nonexistent vertex\n"); + assert(!"An edge was specified that connected a nonexistent vertex\n"); if(origin == destination) - assert("An edge was specified that connected a vertex to itself\n"); + assert(!"An edge was specified that connected a vertex to itself\n"); if(opposite && opposite->GetOpposite()) - assert("A non-manifold edge incident to more than 2 faces was found\n"); + assert(!"A non-manifold edge incident to more than 2 faces was found\n"); 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"); + assert(!"An edge connecting two vertices was specified more than once." + "It's likely that an incident face was flipped\n"); } } #endif -- cgit v1.2.3