summaryrefslogtreecommitdiff
path: root/src/format
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2022-08-17 21:37:24 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2022-08-17 21:37:24 (GMT)
commit429b54556283116a29c5d699af0cf891bb1c1055 (patch)
treea8f9063b9a9590d2960e9463c457bead29916445 /src/format
parentdbe336e27d5bcf2d913750576f868353ca4ba041 (diff)
Disable the extra data storage inside the GObject structure.
Diffstat (limited to 'src/format')
-rw-r--r--src/format/format-int.h4
-rw-r--r--src/format/symbol-int.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/format/format-int.h b/src/format/format-int.h
index 11505d0..3e6ae3e 100644
--- a/src/format/format-int.h
+++ b/src/format/format-int.h
@@ -77,7 +77,7 @@ struct _GBinFormat
{
GKnownFormat parent; /* A laisser en premier */
-#if __SIZEOF_INT__ == __SIZEOF_LONG__
+#if 1 //__SIZEOF_INT__ == __SIZEOF_LONG__
/**
* L'inclusion des informations suivantes dépend de l'architecture.
@@ -135,7 +135,7 @@ struct _GBinFormatClass
* Accès aux informations éventuellement déportées.
*/
-#if __SIZEOF_INT__ == __SIZEOF_LONG__
+#if 1 //__SIZEOF_INT__ == __SIZEOF_LONG__
# define GET_BIN_FORMAT_EXTRA(fmt) (fmt_extra_data_t *)&fmt->extra
diff --git a/src/format/symbol-int.h b/src/format/symbol-int.h
index 7f8bb7f..48a27ed 100644
--- a/src/format/symbol-int.h
+++ b/src/format/symbol-int.h
@@ -67,7 +67,7 @@ struct _GBinSymbol
{
GObject parent; /* A laisser en premier */
-#if __SIZEOF_INT__ == __SIZEOF_LONG__
+#if 1 //__SIZEOF_INT__ == __SIZEOF_LONG__
/**
* L'inclusion des informations suivantes dépend de l'architecture.
@@ -103,7 +103,7 @@ struct _GBinSymbolClass
* Accès aux informations éventuellement déportées.
*/
-#if __SIZEOF_INT__ == __SIZEOF_LONG__
+#if 1 //__SIZEOF_INT__ == __SIZEOF_LONG__
# define GET_BIN_SYMBOL_EXTRA(sym) (sym_extra_data_t *)&sym->extra