bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

use of floorf rather than floor in NSTableView.m


From: Stephen Brandon
Subject: use of floorf rather than floor in NSTableView.m
Date: Mon, 05 Nov 2001 22:33:58 +0000

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"?

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);

Cheers,
Stephen Brandon
stephen@brandonitconsulting.co.uk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]