[Bf-blender-cvs] [2c0f22f49cc] blender2.8: Cleanup: correct header guard

Campbell Barton noreply at git.blender.org
Wed Aug 29 16:55:54 CEST 2018


Commit: 2c0f22f49cc7c1a0ff356fb8742d13c85f222c8b
Author: Campbell Barton
Date:   Thu Aug 30 01:02:26 2018 +1000
Branches: blender2.8
https://developer.blender.org/rB2c0f22f49cc7c1a0ff356fb8742d13c85f222c8b

Cleanup: correct header guard

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

M	source/blender/makesdna/DNA_collection_types.h

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

diff --git a/source/blender/makesdna/DNA_collection_types.h b/source/blender/makesdna/DNA_collection_types.h
index b9ee473a361..f08725e9fe0 100644
--- a/source/blender/makesdna/DNA_collection_types.h
+++ b/source/blender/makesdna/DNA_collection_types.h
@@ -31,8 +31,8 @@
  * \brief Object groups, one object can be in many groups at once.
  */
 
-#ifndef __DNA_GROUP_TYPES_H__
-#define __DNA_GROUP_TYPES_H__
+#ifndef __DNA_COLLECTION_TYPES_H__
+#define __DNA_COLLECTION_TYPES_H__
 
 #include "DNA_defs.h"
 #include "DNA_listBase.h"
@@ -91,4 +91,4 @@ enum {
 	COLLECTION_IS_MASTER           = (1 << 5), /* Is master collection embedded in the scene. */
 };
 
-#endif  /* __DNA_GROUP_TYPES_H__ */
+#endif  /* __DNA_COLLECTION_TYPES_H__ */



More information about the Bf-blender-cvs mailing list