mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
gtkcssshadowvalue.c: Fix build on older Visual Studio
This code made use of isnan(), which is not provided by pre-2013 Visual Studio, so fix the build by including fallback-c89.c in place of math.h, and update fallback-c89.c to include the implementation of isnan() for Visual Studio, which is copied from the fallback-c89.c in gdk/.
This commit is contained in:
parent
b4d17ebcbe
commit
6f54881851
@ -114,3 +114,15 @@ trunc (double x)
|
||||
return (x > 0 ? floor (x) : ceil (x));
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_DECL_ISNAN
|
||||
/* it seems of the supported compilers only
|
||||
* MSVC does not have isnan(), but it does
|
||||
* have _isnan() which does the same as isnan()
|
||||
*/
|
||||
static inline gboolean
|
||||
isnan (double x)
|
||||
{
|
||||
return _isnan (x);
|
||||
}
|
||||
#endif
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "gtkrenderprivate.h"
|
||||
#include "gtkpango.h"
|
||||
|
||||
#include <math.h>
|
||||
#include "fallback-c89.c"
|
||||
#include <float.h>
|
||||
|
||||
#define CORNER_MASK_CACHE_MAX_SIZE 2000U
|
||||
|
Loading…
Reference in New Issue
Block a user