[Bf-blender-cvs] [11d61f3d003] functions: test moving functions to bf_functions

Jacques Lucke noreply at git.blender.org
Mon Sep 9 11:41:13 CEST 2019


Commit: 11d61f3d003c9741a95eef33afeed684a08ac68b
Author: Jacques Lucke
Date:   Mon Sep 9 11:41:07 2019 +0200
Branches: functions
https://developer.blender.org/rB11d61f3d003c9741a95eef33afeed684a08ac68b

test moving functions to bf_functions

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

M	source/blender/blenkernel/intern/falloff.cpp
M	source/blender/functions/frontends/data_flow_nodes/mappings/socket_loaders.cpp

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

diff --git a/source/blender/blenkernel/intern/falloff.cpp b/source/blender/blenkernel/intern/falloff.cpp
index 100968430e9..a5eba4a473c 100644
--- a/source/blender/blenkernel/intern/falloff.cpp
+++ b/source/blender/blenkernel/intern/falloff.cpp
@@ -6,14 +6,6 @@ Falloff::~Falloff()
 {
 }
 
-ConstantFalloff::~ConstantFalloff()
-{
-}
-
-PointDistanceFalloff::~PointDistanceFalloff()
-{
-}
-
 void ConstantFalloff::compute(AttributesRef UNUSED(attributes),
                               ArrayRef<uint> indices,
                               MutableArrayRef<float> r_weights) const
diff --git a/source/blender/functions/frontends/data_flow_nodes/mappings/socket_loaders.cpp b/source/blender/functions/frontends/data_flow_nodes/mappings/socket_loaders.cpp
index c66806aca53..e757418104f 100644
--- a/source/blender/functions/frontends/data_flow_nodes/mappings/socket_loaders.cpp
+++ b/source/blender/functions/frontends/data_flow_nodes/mappings/socket_loaders.cpp
@@ -7,6 +7,14 @@
 
 #include "registry.hpp"
 
+BKE::ConstantFalloff::~ConstantFalloff()
+{
+}
+
+BKE::PointDistanceFalloff::~PointDistanceFalloff()
+{
+}
+
 namespace FN {
 namespace DataFlowNodes {



More information about the Bf-blender-cvs mailing list