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:
authorCampbell Barton <ideasman42@gmail.com>2011-03-27 11:56:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-03-27 11:56:29 +0400
commitb11f29c8ac136888bbdef6d5cc2d481a5692d6ba (patch)
tree9089684b2182a4071bbcda194e93b7eacc319524 /source/blender/ikplugin/intern
parent587bbc4213078fab34ebb631c7eb3cdabe61bc3b (diff)
clear some c++ warnings.
Diffstat (limited to 'source/blender/ikplugin/intern')
-rw-r--r--source/blender/ikplugin/intern/itasc_plugin.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/ikplugin/intern/itasc_plugin.cpp b/source/blender/ikplugin/intern/itasc_plugin.cpp
index dbd7c7dbf14..a456e18498b 100644
--- a/source/blender/ikplugin/intern/itasc_plugin.cpp
+++ b/source/blender/ikplugin/intern/itasc_plugin.cpp
@@ -860,13 +860,11 @@ static int convert_channels(IK_Scene *ikscene, PoseTree *tree)
{
IK_Channel *ikchan;
bPoseChannel *pchan;
- Bone *bone;
int a, flag, njoint;
njoint = 0;
for(a=0, ikchan = ikscene->channels; a<ikscene->numchan; ++a, ++ikchan) {
pchan= tree->pchan[a];
- bone= pchan->bone;
ikchan->pchan = pchan;
ikchan->parent = (a>0) ? tree->parent[a] : -1;
ikchan->owner = ikscene->blArmature;