[Bf-blender-cvs] [54eecb8] depsgraph_refactor: Depsgraph: Code cleanup, comments

Sergey Sharybin noreply at git.blender.org
Mon Mar 16 14:35:00 CET 2015


Commit: 54eecb8ae8ef3da0dd7646c1258e5095c39c9bf4
Author: Sergey Sharybin
Date:   Mon Mar 16 18:27:23 2015 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB54eecb8ae8ef3da0dd7646c1258e5095c39c9bf4

Depsgraph: Code cleanup, comments

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

M	source/blender/depsgraph/DEG_depsgraph.h
M	source/blender/depsgraph/DEG_depsgraph_build.h
M	source/blender/depsgraph/DEG_depsgraph_debug.h
M	source/blender/depsgraph/DEG_depsgraph_query.h
M	source/blender/depsgraph/util/depsgraph_util_function.h
M	source/blender/depsgraph/util/depsgraph_util_hash.h
M	source/blender/depsgraph/util/depsgraph_util_map.h
M	source/blender/depsgraph/util/depsgraph_util_set.h

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

diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h
index 946899a..242705f 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -206,4 +206,4 @@ void DEG_editors_set_update_cb(DEG_EditorUpdateIDCb id_func,
 } /* extern "C" */
 #endif
 
-#endif // __DEG_DEPSGRAPH_H__
+#endif  /* __DEG_DEPSGRAPH_H__ */
diff --git a/source/blender/depsgraph/DEG_depsgraph_build.h b/source/blender/depsgraph/DEG_depsgraph_build.h
index 6049fa0..08b83ac 100644
--- a/source/blender/depsgraph/DEG_depsgraph_build.h
+++ b/source/blender/depsgraph/DEG_depsgraph_build.h
@@ -114,4 +114,4 @@ void DEG_add_special_eval_flag(struct Depsgraph *graph, struct ID *id, short fla
 } /* extern "C" */
 #endif
 
-#endif // __DEG_DEPSGRAPH_BUILD_H__
+#endif  /* __DEG_DEPSGRAPH_BUILD_H__ */
diff --git a/source/blender/depsgraph/DEG_depsgraph_debug.h b/source/blender/depsgraph/DEG_depsgraph_debug.h
index f14392f..a6923f3 100644
--- a/source/blender/depsgraph/DEG_depsgraph_debug.h
+++ b/source/blender/depsgraph/DEG_depsgraph_debug.h
@@ -105,4 +105,4 @@ bool DEG_debug_consistency_check(struct Depsgraph *graph);
 } /* extern "C" */
 #endif
 
-#endif // __DEG_DEPSGRAPH_DEBUG_H__
+#endif  /* __DEG_DEPSGRAPH_DEBUG_H__ */
diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h
index a7459be..43b9b11 100644
--- a/source/blender/depsgraph/DEG_depsgraph_query.h
+++ b/source/blender/depsgraph/DEG_depsgraph_query.h
@@ -188,4 +188,4 @@ short DEG_get_eval_flags_for_id(struct Depsgraph *graph, struct ID *id);
 } /* extern "C" */
 #endif
 
-#endif // __DEG_DEPSGRAPH_QUERY_H__
+#endif  /* __DEG_DEPSGRAPH_QUERY_H__ */
diff --git a/source/blender/depsgraph/util/depsgraph_util_function.h b/source/blender/depsgraph/util/depsgraph_util_function.h
index 87756ac..9aee609 100644
--- a/source/blender/depsgraph/util/depsgraph_util_function.h
+++ b/source/blender/depsgraph/util/depsgraph_util_function.h
@@ -43,4 +43,4 @@ using boost::function;
 
 #endif
 
-#endif /* __DEPSGRAPH_UTIL_SET_H__ */
+#endif  /* __DEPSGRAPH_UTIL_SET_H__ */
diff --git a/source/blender/depsgraph/util/depsgraph_util_hash.h b/source/blender/depsgraph/util/depsgraph_util_hash.h
index 78c53d4..0f5a85b 100644
--- a/source/blender/depsgraph/util/depsgraph_util_hash.h
+++ b/source/blender/depsgraph/util/depsgraph_util_hash.h
@@ -63,4 +63,4 @@ inline size_t hash_combine(size_t hash_a, size_t hash_b)
 	return hash_a ^ (hash_b + 0x9e3779b9 + (hash_a << 6) + (hash_a >> 2));
 }
 
-#endif /* __DEPSGRAPH_UTIL_HASH_H__ */
+#endif  /* __DEPSGRAPH_UTIL_HASH_H__ */
diff --git a/source/blender/depsgraph/util/depsgraph_util_map.h b/source/blender/depsgraph/util/depsgraph_util_map.h
index 478ab58..2951641 100644
--- a/source/blender/depsgraph/util/depsgraph_util_map.h
+++ b/source/blender/depsgraph/util/depsgraph_util_map.h
@@ -58,4 +58,4 @@ using std::tr1::unordered_map;
  DEG_STD_UNORDERED_MAP, DEG_STD_UNORDERED_MAP_IN_TR1_NAMESPACE must be defined!  // NOLINT
 #endif
 
-#endif /* __DEPSGRAPH_UTIL_MAP_H__ */
+#endif  /* __DEPSGRAPH_UTIL_MAP_H__ */
diff --git a/source/blender/depsgraph/util/depsgraph_util_set.h b/source/blender/depsgraph/util/depsgraph_util_set.h
index e5bbe04..09fa531 100644
--- a/source/blender/depsgraph/util/depsgraph_util_set.h
+++ b/source/blender/depsgraph/util/depsgraph_util_set.h
@@ -57,4 +57,4 @@ using std::tr1::unordered_set;
  DEG_STD_UNORDERED_MAP, DEG_STD_UNORDERED_MAP_IN_TR1_NAMESPACE must be defined!  // NOLINT
 #endif
 
-#endif /* __DEPSGRAPH_UTIL_SET_H__ */
+#endif  /* __DEPSGRAPH_UTIL_SET_H__ */




More information about the Bf-blender-cvs mailing list