Skip to content
Snippets Groups Projects
Commit ae8ecd65 authored by Julien Malik's avatar Julien Malik
Browse files

BUG: use logical operator instead of bit-wise operator

parent ec511262
No related branches found
No related tags found
No related merge requests found
......@@ -309,7 +309,7 @@ VectorDataExtractROI<TVectorData>
secondPoint[1] = secondVertex[1];
if (m_GeoROI.IsInside(this->PointToContinuousIndex(firstPoint))
| m_GeoROI.IsInside(this->PointToContinuousIndex(secondPoint)))
|| m_GeoROI.IsInside(this->PointToContinuousIndex(secondPoint)))
{
return true;
}
......
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