Skip to content

Commit

Permalink
Remove unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Nov 7, 2024
1 parent 9ce4c50 commit 6352ee9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions modules/tracker/rbt/src/features/vpRBSilhouetteCCDTracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ template <class T> class FastMat63
C.resize(6, 6, false, false);
for (unsigned int i = 0; i < 6; ++i) {
const double *a = &A.data[i * 3];
const double *b = &B.data[i * 3];
double *c = C[i];

c[0] = a[0] * B[0] + a[1] * B[1] + a[2] * B[2];
Expand All @@ -118,7 +117,6 @@ template <class T> class FastMat63
c[3] = a[0] * B[9] + a[1] * B[10] + a[2] * B[11];
c[4] = a[0] * B[12] + a[1] * B[13] + a[2] * B[14];
c[5] = a[0] * B[15] + a[1] * B[16] + a[2] * B[17];

}
}
};
Expand Down

0 comments on commit 6352ee9

Please sign in to comment.