Skip to content

Commit

Permalink
Another small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
QbProg committed Jun 13, 2011
1 parent 3ef9908 commit f605499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IntCurve/IntCurve_IntConicConic_Tool.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Interval::Interval( const Standard_Real a,const Standard_Boolean hf
Standard_Real Interval::Length() { return((IsNull)? -1.0 :Abs(Bsup-Binf)); }

Interval Interval::IntersectionWithBounded(const Interval& Inter) {
if(IsNull || Inter.IsNull) { Interval PourSGI(); return(PourSGI); }
if(IsNull || Inter.IsNull) { Interval PourSGI; return(PourSGI); }
if(!(HasFirstBound || HasLastBound))
return(Interval(Inter.Binf,Inter.Bsup));
Standard_Real a,b;
Expand Down

0 comments on commit f605499

Please sign in to comment.