From cdc17751aefcc22b7c034538a9b4b95e79f7a721 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 14 Feb 2024 13:53:36 +1100 Subject: [PATCH] Cleanup: format --- source/blender/blenkernel/BKE_lib_id.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/BKE_lib_id.hh b/source/blender/blenkernel/BKE_lib_id.hh index 5d1097b4695..b6896104b79 100644 --- a/source/blender/blenkernel/BKE_lib_id.hh +++ b/source/blender/blenkernel/BKE_lib_id.hh @@ -212,7 +212,7 @@ ID *BKE_libblock_find_name_and_library(Main *bmain, * Duplicate (a.k.a. deep copy) common processing options. * See also eDupli_ID_Flags for options controlling what kind of IDs to duplicate. */ - enum eLibIDDuplicateFlags { +enum eLibIDDuplicateFlags { /** This call to a duplicate function is part of another call for some parent ID. * Therefore, this sub-process should not clear `newid` pointers, nor handle remapping itself. * NOTE: In some cases (like Object one), the duplicate function may be called on the root ID @@ -222,7 +222,7 @@ ID *BKE_libblock_find_name_and_library(Main *bmain, /** This call is performed on a 'root' ID, and should therefore perform some decisions regarding * sub-IDs (dependencies), check for linked vs. locale data, etc. */ LIB_ID_DUPLICATE_IS_ROOT_ID = 1 << 1, -} ; +}; ENUM_OPERATORS(eLibIDDuplicateFlags, LIB_ID_DUPLICATE_IS_ROOT_ID)