mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
Set the reserved bit to (1 << 0) instead of (1 << 30).
2001-12-17 Anders Carlsson <andersca@gnu.org> * gtype.h (G_TYPE_FLAG_RESERVED_ID_BIT): Set the reserved bit to (1 << 0) instead of (1 << 30).
This commit is contained in:
parent
a52e2986cd
commit
82fa2c0069
@ -1,3 +1,8 @@
|
|||||||
|
2001-12-17 Anders Carlsson <andersca@gnu.org>
|
||||||
|
|
||||||
|
* gtype.h (G_TYPE_FLAG_RESERVED_ID_BIT): Set the reserved bit
|
||||||
|
to (1 << 0) instead of (1 << 30).
|
||||||
|
|
||||||
2001-12-14 James Henstridge <james@daa.com.au>
|
2001-12-14 James Henstridge <james@daa.com.au>
|
||||||
|
|
||||||
* Makefile.am: add rules to build it.
|
* Makefile.am: add rules to build it.
|
||||||
|
@ -372,7 +372,7 @@ G_CONST_RETURN gchar* g_type_name_from_class (GTypeClass *g_class);
|
|||||||
# define _G_TYPE_CIT(ip, gt) (g_type_check_instance_is_a ((GTypeInstance*) ip, gt))
|
# define _G_TYPE_CIT(ip, gt) (g_type_check_instance_is_a ((GTypeInstance*) ip, gt))
|
||||||
# define _G_TYPE_CCT(cp, gt) (g_type_check_class_is_a ((GTypeClass*) cp, gt))
|
# define _G_TYPE_CCT(cp, gt) (g_type_check_class_is_a ((GTypeClass*) cp, gt))
|
||||||
#endif /* !__GNUC__ */
|
#endif /* !__GNUC__ */
|
||||||
#define G_TYPE_FLAG_RESERVED_ID_BIT (1 << 30)
|
#define G_TYPE_FLAG_RESERVED_ID_BIT (1 << 0)
|
||||||
extern GTypeDebugFlags _g_type_debug_flags;
|
extern GTypeDebugFlags _g_type_debug_flags;
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
Loading…
Reference in New Issue
Block a user