Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-10-07 06:36:35 +0300
committerCampbell Barton <campbell@blender.org>2022-10-07 06:36:35 +0300
commitcafd204af6d9969654bdee5ae14fef220640487c (patch)
tree76b0467156dcceeca15d397d87d030916d9c870b
parent47d3e765679e54c09ecc4ded812e89483a1e1d9b (diff)
Cleanup: remove redundant 'using'
clang-tidy converts C-style typedefs to this style, but the "using ..." isn't needed.
-rw-r--r--source/blender/editors/space_view3d/view3d_select.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_select.cc b/source/blender/editors/space_view3d/view3d_select.cc
index 94b1573ceda..cba85097071 100644
--- a/source/blender/editors/space_view3d/view3d_select.cc
+++ b/source/blender/editors/space_view3d/view3d_select.cc
@@ -1601,7 +1601,7 @@ static bool object_mouse_select_menu(bContext *C,
const float dist_threshold_sq = square_f(15 * U.pixelsize);
int base_count = 0;
- using BaseRefWithDepth = struct BaseRefWithDepth {
+ struct BaseRefWithDepth {
struct BaseRefWithDepth *next, *prev;
Base *base;
/** The scale isn't defined, simply use for sorting. */
@@ -1812,7 +1812,7 @@ static bool bone_mouse_select_menu(bContext *C,
int bone_count = 0;
- using BoneRefWithDepth = struct BoneRefWithDepth {
+ struct BoneRefWithDepth {
struct BoneRefWithDepth *next, *prev;
Base *base;
union {