[Bf-blender-cvs] [ea69d985805] master: Cleanup: remove runtime structs from DNA

Campbell Barton noreply at git.blender.org
Wed Feb 27 04:01:29 CET 2019


Commit: ea69d9858058e027a8b49d0cf313c8d4abb777a4
Author: Campbell Barton
Date:   Wed Feb 27 13:54:02 2019 +1100
Branches: master
https://developer.blender.org/rBea69d9858058e027a8b49d0cf313c8d4abb777a4

Cleanup: remove runtime structs from DNA

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

M	source/blender/makesdna/DNA_node_types.h

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

diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 9713e6cc348..86bba29ef9a 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -349,22 +349,24 @@ typedef struct bNodeInstanceKey {
  * WARNING: pointers are cast to this struct internally,
  * it must be first member in hash entry structs!
  */
+#
+#
 typedef struct bNodeInstanceHashEntry {
 	bNodeInstanceKey key;
 
 	/* tags for cleaning the cache */
 	short tag;
-	short pad;
 } bNodeInstanceHashEntry;
 
 
+#
+#
 typedef struct bNodePreview {
 	/** Must be first. */
 	bNodeInstanceHashEntry hash_entry;
 
 	unsigned char *rect;
 	short xsize, ysize;
-	int pad;
 } bNodePreview;



More information about the Bf-blender-cvs mailing list