From 7dc85e68fe7606daceb65a03ef8c82ec5abef588 Mon Sep 17 00:00:00 2001 From: guishe Date: Tue, 6 Jun 2023 21:59:09 +0200 Subject: [PATCH] Cleanup: Fix comment warning When compiling on Ubuntu this comment could generate thousands of warning lines, the comment is fixed now. Introduced by 8e059b569b8b9e6c18a8774a806b627d1c98e371 Pull Request: https://projects.blender.org/blender/blender/pulls/108676 --- source/blender/makesdna/DNA_scene_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index a7ff620a56c..e843ba87dd2 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -2255,7 +2255,7 @@ typedef enum eSnapFlag { SCE_SNAP_ROTATE = (1 << 1), SCE_SNAP_PEEL_OBJECT = (1 << 2), /** Project individual elements instead of whole object. */ - /* SCE_SNAP_PROJECT = (1 << 3), DEPRECATED * / + /** SCE_SNAP_PROJECT = (1 << 3), DEPRECATED */ /** Was `SCE_SNAP_NO_SELF`, but self should be active. */ SCE_SNAP_NOT_TO_ACTIVE = (1 << 4), SCE_SNAP_ABS_GRID = (1 << 5),