mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 02:06:18 +01:00
Merge branch 'fix-sizeof-check' into 'master'
garray: Fix reference to GLIB_SIZEOF_INT See merge request GNOME/glib!1084
This commit is contained in:
commit
3e6fe8cd27
@ -883,7 +883,7 @@ g_nearest_pow (guint num)
|
||||
n |= n >> 4;
|
||||
n |= n >> 8;
|
||||
n |= n >> 16;
|
||||
#if GLIB_SIZEOF_INT == 8
|
||||
#if SIZEOF_INT == 8
|
||||
n |= n >> 32;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user