From 5db4608f70bca95f9fddea620fcfd77c26767b7e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 6 Jun 2019 10:16:18 +1000 Subject: Cleanup: extra-semi-stmt warning --- source/blender/ikplugin/intern/itasc_plugin.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/blender/ikplugin/intern/itasc_plugin.cpp') 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 - ; } } -- cgit v1.2.3