Skip to content
Snippets Groups Projects
Commit 127cf684 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

Correction du 0./0. .

parent bf901c91
Branches
Tags
No related merge requests found
......@@ -135,7 +135,8 @@ void
EuclideanDistanceWithMissingValue< TVector >
::SetToMissingValue ( ValueType & v )
{
v = static_cast<ValueType>( 0.0/0.0 );
//v = static_cast<ValueType>( 0.0/0.0 );
v = std::numeric_limits<ValueType>::quiet_NaN();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment