[Bf-blender-cvs] [54fe9368492] functions: remove unused action

Jacques Lucke noreply at git.blender.org
Thu Dec 19 13:21:23 CET 2019


Commit: 54fe9368492058309a7d817001326a698ccf6370
Author: Jacques Lucke
Date:   Thu Dec 19 10:37:21 2019 +0100
Branches: functions
https://developer.blender.org/rB54fe9368492058309a7d817001326a698ccf6370

remove unused action

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

M	source/blender/simulations/bparticles/actions.cpp
M	source/blender/simulations/bparticles/actions.hpp

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

diff --git a/source/blender/simulations/bparticles/actions.cpp b/source/blender/simulations/bparticles/actions.cpp
index 33f182fe61a..0556de1cc69 100644
--- a/source/blender/simulations/bparticles/actions.cpp
+++ b/source/blender/simulations/bparticles/actions.cpp
@@ -6,10 +6,6 @@ namespace BParticles {
 
 using BLI::rgba_f;
 
-void NoneAction::execute(ActionInterface &UNUSED(interface))
-{
-}
-
 void ActionSequence::execute(ActionInterface &interface)
 {
   for (auto &action : m_actions) {
diff --git a/source/blender/simulations/bparticles/actions.hpp b/source/blender/simulations/bparticles/actions.hpp
index 494dc79e0d4..f91a43f1fa8 100644
--- a/source/blender/simulations/bparticles/actions.hpp
+++ b/source/blender/simulations/bparticles/actions.hpp
@@ -7,10 +7,6 @@ namespace BParticles {
 
 using FN::CPPType;
 
-class NoneAction : public Action {
-  void execute(ActionInterface &UNUSED(interface)) override;
-};
-
 class ActionSequence : public Action {
  private:
   Vector<Action *> m_actions;



More information about the Bf-blender-cvs mailing list