[Bf-blender-cvs] [2b3b46d] depsgraph_refactor: Depsgraph: UNUSED() shouldn't be sued in headers

Sergey Sharybin noreply at git.blender.org
Fri Dec 5 08:32:29 CET 2014


Commit: 2b3b46df5573f7e94a1931fbb22e8d3f9f8b8de8
Author: Sergey Sharybin
Date:   Fri Dec 5 12:30:31 2014 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB2b3b46df5573f7e94a1931fbb22e8d3f9f8b8de8

Depsgraph: UNUSED() shouldn't be sued in headers

I'm not sure why it compiled last night and not today tbh.

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

M	source/blender/blenkernel/BKE_depsgraph.h

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

diff --git a/source/blender/blenkernel/BKE_depsgraph.h b/source/blender/blenkernel/BKE_depsgraph.h
index faa3604..2e4900b 100644
--- a/source/blender/blenkernel/BKE_depsgraph.h
+++ b/source/blender/blenkernel/BKE_depsgraph.h
@@ -92,7 +92,7 @@ void DAG_exit(void);
  */
 
 void DAG_scene_relations_update(struct Main *bmain, struct Scene *sce);
-void DAG_relations_tag_id_update(struct Main *bmain, struct ID *UNUSED(id));
+void DAG_relations_tag_id_update(struct Main *bmain, struct ID *id);
 void DAG_scene_relations_validate(struct Main *bmain, struct Scene *sce);
 void DAG_relations_tag_update(struct Main *bmain);
 void DAG_scene_relations_rebuild(struct Main *bmain, struct Scene *scene);




More information about the Bf-blender-cvs mailing list