Skip to content

Commit

Permalink
Fix type mismatch in CPD filter.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Aug 23, 2017
1 parent 42acc97 commit 2d3e2c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/cpd/filters/CpdFilter.cpp
Expand Up @@ -45,7 +45,7 @@ namespace
{
void movePoints(PointViewPtr moving, const cpd::Matrix& result)
{
assert(moving->size() == result.rows());
assert(moving->size() == (point_count_t)result.rows());
for (PointId i = 0; i < moving->size(); ++i)
{
moving->setField(Dimension::Id::X, i, result(i, 0));
Expand Down

0 comments on commit 2d3e2c8

Please sign in to comment.