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>2019-06-06 03:16:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-06 03:16:18 +0300
commit5db4608f70bca95f9fddea620fcfd77c26767b7e (patch)
treeea14add52439cbd12bfbb6f6444fe0ed90f1306e /source/blender/ikplugin
parent0f6ac1883d6a72bfca4412c345a64ccb765b8edd (diff)
Cleanup: extra-semi-stmt warning
Diffstat (limited to 'source/blender/ikplugin')
-rw-r--r--source/blender/ikplugin/intern/itasc_plugin.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/ikplugin/intern/itasc_plugin.cpp b/source/blender/ikplugin/intern/itasc_plugin.cpp
index 13e13f0ee26..b1eb0978339 100644
--- a/source/blender/ikplugin/intern/itasc_plugin.cpp
+++ b/source/blender/ikplugin/intern/itasc_plugin.cpp
@@ -338,14 +338,14 @@ static int initialize_chain(Object *ob, bPoseChannel *pchan_tip, bConstraint *co
while (a < size && t < tree->totchannel) {
// locate first matching channel
for (; t < tree->totchannel && tree->pchan[t] != chanlist[segcount - a - 1]; t++) {
- ;
+ /* pass */
}
if (t >= tree->totchannel) {
break;
}
for (; a < size && t < tree->totchannel && tree->pchan[t] == chanlist[segcount - a - 1];
a++, t++) {
- ;
+ /* pass */
}
}
@@ -1892,7 +1892,6 @@ static void execute_scene(struct Depsgraph *depsgraph,
}
if (i < ikscene->numchan) {
// big problem
- ;
}
}