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:
authorHans Goudey <h.goudey@me.com>2021-06-22 07:02:00 +0300
committerHans Goudey <h.goudey@me.com>2021-06-22 07:02:00 +0300
commitdc3b7602eeb08df788c6dcd1dee6860d58a5010d (patch)
tree6ee717350a157d278df6d663f1c0a30e3e214e3c /source/blender/nodes
parentd086570c7a364f90d4d80badad30afb3ac580309 (diff)
Cleanup: Rename variables, use shorter names
`src` and `dst` are perfectly clear, and avoid repeating unecessary characters when writing the variables many times, allowing more space for everything else.
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_curve_to_points.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_curve_to_points.cc b/source/blender/nodes/geometry/nodes/node_geo_curve_to_points.cc
index dbfe3211ac4..2725c625913 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_curve_to_points.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_curve_to_points.cc
@@ -326,8 +326,6 @@ static void geo_node_curve_to_points_exec(GeoNodeExecParams params)
geometry_set = bke::geometry_set_realize_instances(geometry_set);
- SCOPED_TIMER(__func__);
-
if (!geometry_set.has_curve()) {
params.set_output("Geometry", GeometrySet());
return;