[Bf-blender-cvs] [393a06c] depsgraph_refactor: Depsgraph: Remove abort which was initially only meant for debugging

Sergey Sharybin noreply at git.blender.org
Thu Jan 22 13:08:19 CET 2015


Commit: 393a06cc62b9f50df9bacadcdb4c003356dc6d6e
Author: Sergey Sharybin
Date:   Thu Jan 22 17:06:58 2015 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB393a06cc62b9f50df9bacadcdb4c003356dc6d6e

Depsgraph: Remove abort which was initially only meant for debugging

We can't add abort in relation add yet, basically because it's possible
modifier will try to create relation to non-existing bone after modifying
the armature.

And that abort was just a temporary debug thing.

===================================================================

M	source/blender/depsgraph/intern/depsgraph_build.h

===================================================================

diff --git a/source/blender/depsgraph/intern/depsgraph_build.h b/source/blender/depsgraph/intern/depsgraph_build.h
index 961103c..4f374ab 100644
--- a/source/blender/depsgraph/intern/depsgraph_build.h
+++ b/source/blender/depsgraph/intern/depsgraph_build.h
@@ -365,7 +365,6 @@ void DepsgraphRelationBuilder::add_node_handle_relation(const KeyType &key_from,
 		add_operation_relation(op_from, op_to, type, description);
 	}
 	else {
-		abort();
 		if (!op_from) {
 			/* XXX TODO handle as error or report if needed */
 		}




More information about the Bf-blender-cvs mailing list