From 4e84fba54704b27b3b2262bce0b38df3334792a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Fri, 2 Sep 2022 20:31:14 +0200 Subject: Cleanup: Fix clang-tidy warnings: [modernize-use-using] --- source/blender/editors/space_outliner/outliner_tools.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_outliner/outliner_tools.cc b/source/blender/editors/space_outliner/outliner_tools.cc index 82d9af34920..4663df00a92 100644 --- a/source/blender/editors/space_outliner/outliner_tools.cc +++ b/source/blender/editors/space_outliner/outliner_tools.cc @@ -455,14 +455,14 @@ static void outliner_do_libdata_operation(bContext *C, }); } -typedef enum eOutlinerLibOpSelectionSet { +enum eOutlinerLibOpSelectionSet { /* Only selected items. */ OUTLINER_LIB_SELECTIONSET_SELECTED, /* Only content 'inside' selected items (their sub-tree). */ OUTLINER_LIB_LIB_SELECTIONSET_CONTENT, /* Combining both options above. */ OUTLINER_LIB_LIB_SELECTIONSET_SELECTED_AND_CONTENT, -} eOutlinerLibOpSelectionSet; +}; static const EnumPropertyItem prop_lib_op_selection_set[] = { {OUTLINER_LIB_SELECTIONSET_SELECTED, -- cgit v1.2.3