mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:07:35 +00:00
AK: Remove signbit definition to prevent conflict in FixedPoint
This commit is contained in:
parent
aa9f1ee889
commit
e35a858bde
1 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,11 @@
|
||||||
# include <AK/Math.h>
|
# include <AK/Math.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Solaris' definition of signbit in math_c99.h conflicts with our implementation.
|
||||||
|
#ifdef AK_OS_SOLARIS
|
||||||
|
# undef signbit
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace AK {
|
namespace AK {
|
||||||
|
|
||||||
// FIXME: this always uses round to nearest break-tie to even
|
// FIXME: this always uses round to nearest break-tie to even
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue