[Bf-blender-cvs] [ce96a75c2cb] master: Cleanup: eBLOLibLinkFlags: Add 'space' between `APPEND` flags and `INSTANCE` ones.

Bastien Montagne noreply at git.blender.org
Thu Sep 23 13:01:55 CEST 2021


Commit: ce96a75c2cb17c255226c8b56f85231ce0578811
Author: Bastien Montagne
Date:   Thu Sep 23 12:45:40 2021 +0200
Branches: master
https://developer.blender.org/rBce96a75c2cb17c255226c8b56f85231ce0578811

Cleanup: eBLOLibLinkFlags: Add 'space' between `APPEND` flags and `INSTANCE` ones.

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

M	source/blender/blenloader/BLO_readfile.h

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

diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h
index 1f0203b45e9..c3a57f17e8b 100644
--- a/source/blender/blenloader/BLO_readfile.h
+++ b/source/blender/blenloader/BLO_readfile.h
@@ -214,9 +214,9 @@ typedef enum eBLOLibLinkFlags {
   /** Append (make local) also indirect dependencies of appendeds IDs. */
   BLO_LIBLINK_APPEND_RECURSIVE = 1 << 20,
   /** Instantiate object data IDs (i.e. create objects for them if needed). */
-  BLO_LIBLINK_OBDATA_INSTANCE = 1 << 21,
+  BLO_LIBLINK_OBDATA_INSTANCE = 1 << 24,
   /** Instantiate collections as empties, instead of linking them into current view layer. */
-  BLO_LIBLINK_COLLECTION_INSTANCE = 1 << 22,
+  BLO_LIBLINK_COLLECTION_INSTANCE = 1 << 25,
 } eBLOLibLinkFlags;
 
 /**



More information about the Bf-blender-cvs mailing list