[Bf-blender-cvs] [d5ed706] alembic: Alembic: Code cleanup, space around unused pointer function argument

Sergey Sharybin noreply at git.blender.org
Wed Apr 22 10:06:14 CEST 2015


Commit: d5ed706674e3428b48f446211c1960138e2e600e
Author: Sergey Sharybin
Date:   Wed Apr 22 13:05:39 2015 +0500
Branches: alembic
https://developer.blender.org/rBd5ed706674e3428b48f446211c1960138e2e600e

Alembic: Code cleanup, space around unused pointer function argument

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

M	intern/cycles/blender/blender_curves.cpp

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

diff --git a/intern/cycles/blender/blender_curves.cpp b/intern/cycles/blender/blender_curves.cpp
index 64af00c..f75d487 100644
--- a/intern/cycles/blender/blender_curves.cpp
+++ b/intern/cycles/blender/blender_curves.cpp
@@ -194,7 +194,7 @@ static void ObtainCacheParticleData(Mesh *mesh, BL::Object b_ob, BL::ParticleSys
 	}
 }
 
-static void ObtainCacheParticleUV(Mesh */*mesh*/, BL::Object /*b_ob*/, BL::Mesh b_mesh, BL::ParticleSystem b_psys, BL::ParticleSystemModifier b_psmd,
+static void ObtainCacheParticleUV(Mesh * /*mesh*/, BL::Object /*b_ob*/, BL::Mesh b_mesh, BL::ParticleSystem b_psys, BL::ParticleSystemModifier b_psmd,
                                   ParticleCurveData *CData, bool background, int uv_num)
 {
 	BL::ParticleSettings b_part((const PointerRNA)b_psys.settings().ptr);
@@ -232,7 +232,7 @@ static void ObtainCacheParticleUV(Mesh */*mesh*/, BL::Object /*b_ob*/, BL::Mesh
 	}
 }
 
-static void ObtainCacheParticleVcol(Mesh */*mesh*/, BL::Object /*b_ob*/, BL::Mesh b_mesh, BL::ParticleSystem b_psys, BL::ParticleSystemModifier b_psmd,
+static void ObtainCacheParticleVcol(Mesh * /*mesh*/, BL::Object /*b_ob*/, BL::Mesh b_mesh, BL::ParticleSystem b_psys, BL::ParticleSystemModifier b_psmd,
                                     ParticleCurveData *CData, bool background, int vcol_num)
 {
 	BL::ParticleSettings b_part((const PointerRNA)b_psys.settings().ptr);
@@ -412,7 +412,7 @@ static bool ObtainCacheStrandsData(Mesh *mesh, BL::Scene b_scene, BL::Object b_p
 }
 
 template <typename StrandsT>
-static bool ObtainCacheStrandsUV(Mesh */*mesh*/, BL::Scene b_scene, BL::Object b_parent, BL::DupliObject b_dupli_ob, BL::ParticleSystem b_psys,
+static bool ObtainCacheStrandsUV(Mesh * /*mesh*/, BL::Scene b_scene, BL::Object b_parent, BL::DupliObject b_dupli_ob, BL::ParticleSystem b_psys,
                                  ParticleCurveData *CData, bool background, int uv_num)
 {
 	typedef StrandsTraits<StrandsT> traits;
@@ -437,7 +437,7 @@ static bool ObtainCacheStrandsUV(Mesh */*mesh*/, BL::Scene b_scene, BL::Object b
 }
 
 template <typename StrandsT>
-static bool ObtainCacheStrandsVcol(Mesh */*mesh*/, BL::Scene b_scene, BL::Object b_parent, BL::DupliObject b_dupli_ob, BL::ParticleSystem b_psys,
+static bool ObtainCacheStrandsVcol(Mesh * /*mesh*/, BL::Scene b_scene, BL::Object b_parent, BL::DupliObject b_dupli_ob, BL::ParticleSystem b_psys,
                                    ParticleCurveData *CData, bool background, int vcol_num)
 {
 	typedef StrandsTraits<StrandsT> traits;




More information about the Bf-blender-cvs mailing list