Bug in BRepExtrema_DistanceSS.cxx

Hi everybody,

the function PERFORM_C0 in BRepExtrema_DistanceSS.cxx (ModellingAlgorithms) uses an uninitialized variable. VS gives the following warning during the compilation:

ros\src\brepextrema\brepextrema_distancess.cxx(522) : warning C4700: uninitialized local variable 'epsP' used

Put the following line:

epsP = Precision::PConfusion();

somewhere before the variable is used to initialize it.

Pawel

Pawel's picture

This issue was fixed in OC6.3.0.

Just to let you know.

Pawel