Skip to content

Commit

Permalink
Merge ec95d7a into beac11e
Browse files Browse the repository at this point in the history
  • Loading branch information
j-rivero authored Nov 1, 2023
2 parents beac11e + ec95d7a commit 0653c5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions include/gz/math/MovingWindowFilter.hh
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ namespace gz
using MovingWindowFilterVector3f = MovingWindowFilter<Vector3f>;
using MovingWindowFilterVector3d = MovingWindowFilter<Vector3d>;
}

} // namespace math
} // namespace gz
#endif
13 changes: 7 additions & 6 deletions src/MovingWindowFilter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*
*/

#include "gz/math/Export.hh"
#include "gz/math/MovingWindowFilter.hh"
#include "gz/math/Vector3.hh"

Expand Down Expand Up @@ -137,12 +138,12 @@ MovingWindowFilter<gz::math::Vector3d>::Value() const
return value;
}

template class MovingWindowFilter<int>;
template class MovingWindowFilter<float>;
template class MovingWindowFilter<double>;
template class MovingWindowFilter<gz::math::Vector3i>;
template class MovingWindowFilter<gz::math::Vector3f>;
template class MovingWindowFilter<gz::math::Vector3d>;
template class MovingWindowFilter<int>;
template class MovingWindowFilter<float>;
template class MovingWindowFilter<double>;
template class GZ_MATH_VISIBLE MovingWindowFilter<gz::math::Vector3i>;
template class GZ_MATH_VISIBLE MovingWindowFilter<gz::math::Vector3f>;
template class GZ_MATH_VISIBLE MovingWindowFilter<gz::math::Vector3d>;

}
} // namespace math
Expand Down

0 comments on commit 0653c5d

Please sign in to comment.