Skip to content
Snippets Groups Projects
Commit ff60a223 authored by Victor Poughon's avatar Victor Poughon
Browse files

BUG: fix #1609 return-statement with a value, in function returning 'void'

parent cb9ea705
No related branches found
No related tags found
1 merge request!112BUG: fix #1609 return-statement with a value, in function returning 'void'
...@@ -138,7 +138,7 @@ public: ...@@ -138,7 +138,7 @@ public:
* \return the point projected in the image coordinates system. * \return the point projected in the image coordinates system.
* \throw None * \throw None
*/ */
void TransformPointToPhysicalPoint(const PointType& point) const PointType TransformPointToPhysicalPoint(const PointType& point) const
{ {
// why no loop on VDimension ? // why no loop on VDimension ?
PointType physicalPoint; PointType physicalPoint;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment