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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-12 16:59:51 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-13 12:31:19 +0300
commitb92d78553b1889ff5bfbea17b35cf8fda586a062 (patch)
tree8800cd9fee6b6649d3c67921e160bb35e01610fa /intern/itasc/FixedObject.hpp
parent9599ed3ba7627054ce2e8543da90f86b8ff36c23 (diff)
Cleanup: don't use Blender structs in iTaSC module.
Diffstat (limited to 'intern/itasc/FixedObject.hpp')
-rw-r--r--intern/itasc/FixedObject.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/itasc/FixedObject.hpp b/intern/itasc/FixedObject.hpp
index e768157ed2b..ad26e7cb2d6 100644
--- a/intern/itasc/FixedObject.hpp
+++ b/intern/itasc/FixedObject.hpp
@@ -21,7 +21,7 @@ public:
int addFrame(const std::string& name, const Frame& frame);
- virtual void updateCoordinates(const struct EvaluationContext *eval_ctx, const Timestamp& timestamp) {};
+ virtual void updateCoordinates(const Timestamp& timestamp) {};
virtual int addEndEffector(const std::string& name);
virtual bool finalize();
virtual const Frame& getPose(const unsigned int frameIndex);