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:
-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 {