mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-11 13:10:07 +00:00
Fix unclosed comments
This commit is contained in:
parent
b9eb02ebbe
commit
823ee6d529
@ -20,9 +20,10 @@
|
|||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
#ifndef HAVE_ISNAN
|
#ifndef HAVE_ISNAN
|
||||||
/* it seems of the supported compilers only */
|
/* it seems of the supported compilers only
|
||||||
/* MSVC does not have isnan(), but it does
|
* MSVC does not have isnan(), but it does
|
||||||
/* have _isnan() which does the same as isnan() */
|
* have _isnan() which does the same as isnan()
|
||||||
|
*/
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
isnan (double x)
|
isnan (double x)
|
||||||
{
|
{
|
||||||
@ -31,9 +32,10 @@ isnan (double x)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_ISINF
|
#ifndef HAVE_ISINF
|
||||||
/* Unfortunately MSVC does not have finite() */
|
/* Unfortunately MSVC does not have finite()
|
||||||
/* but it does have _finite() which is the same */
|
* but it does have _finite() which is the same
|
||||||
/* as finite() except when x is a NaN */
|
* as finite() except when x is a NaN
|
||||||
|
*/
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
isinf (double x)
|
isinf (double x)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user