Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
troussil committed Oct 3, 2024
1 parent b75042b commit e1c26b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/DGtal/geometry/helpers/PlaneProbingEstimatorHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ namespace DGtal
* @param aRay the probing ray to display.
* @return the output stream after the writing.
*/
template < typename Integer >
std::ostream& operator<< (std::ostream& aOs, PointOnProbingRay<Integer> const& aRay);
template < typename Integer, typename Index >
std::ostream& operator<< (std::ostream& aOs, PointOnProbingRay<Integer,Index> const& aRay);

/////////////////////////////////////////////////////////////////////////////
// template class GridPoint
Expand Down Expand Up @@ -397,8 +397,8 @@ namespace DGtal
* @param aGridPoint the grid point to display.
* @return the output stream after the writing.
*/
template < typename Integer >
std::ostream& operator<< (std::ostream& aOs, GridPoint<Integer> const& aGridPoint) {
template < typename Integer, typename Index >
std::ostream& operator<< (std::ostream& aOs, GridPoint<Integer,Index> const& aGridPoint) {
aOs << "GridPoint[k=" << aGridPoint.k()
<< ", a=" << aGridPoint.direction().first
<< ", b=" << aGridPoint.direction().second
Expand Down

0 comments on commit e1c26b4

Please sign in to comment.