[Bf-blender-cvs] [1b75cd5aa8] master: Cleanup: Don't use C++ comments style in C code

Sergey Sharybin noreply at git.blender.org
Mon Jan 9 12:46:10 CET 2017


Commit: 1b75cd5aa80b38a8bee6693cf2dfc9a3e8e62abf
Author: Sergey Sharybin
Date:   Mon Jan 9 12:35:08 2017 +0100
Branches: master
https://developer.blender.org/rB1b75cd5aa80b38a8bee6693cf2dfc9a3e8e62abf

Cleanup: Don't use C++ comments style in C code

===================================================================

M	source/blender/editors/object/object_modifier.c

===================================================================

diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index 619313e9c3..06f495fb9f 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -98,7 +98,7 @@ ModifierData *ED_object_modifier_add(ReportList *reports, Main *bmain, Scene *sc
 	ModifierData *md = NULL, *new_md = NULL;
 	const ModifierTypeInfo *mti = modifierType_getInfo(type);
 	
-	// check compatibility of modifier [T25291, T50373]
+	/* Check compatibility of modifier [T25291, T50373]. */
 	if (!BKE_object_support_modifier_type_check(ob, type)) {
 		BKE_reportf(reports, RPT_WARNING, "Modifiers cannot be added to object '%s'", ob->id.name + 2);
 		return NULL;




More information about the Bf-blender-cvs mailing list