[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: use of floorf rather than floor in NSTableView.m
From: |
Pierre-Yves Rivaille |
Subject: |
Re: use of floorf rather than floor in NSTableView.m |
Date: |
Mon, 5 Nov 2001 23:55:42 +0100 (MET) |
> In gui/Source/NSTableView.m there is use of the function
> "floorf". I think it's the only time it's used in gnustep.
> It is not found on Windows 2000 with CygWin/MinGW.
>
> Is there any reason why it can't just be "floor"?
I don't think there is any one. I definetly should have written
"floorf" when I wrote this line.
>
> If not, could I please log this as a bug and request the
> change:
>
> diff -r1.44 NSTableView.m
> 2270c2270
> < int remainingInt = floorf(remainingWidth);
> ---
> > int remainingInt = floor(remainingWidth);
I'll commit this change ASAP.
bye,
Pierre-Yves Rivaille