Changeset: c0536af1bc1d for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c0536af1bc1d
Modified Files:
        gdk/gdk.mx
Branch: Apr2011
Log Message:

warning: type of bit-field 'X' is a GCC extension (use unsigned int instead)


diffs (21 lines):

diff --git a/gdk/gdk.mx b/gdk/gdk.mx
--- a/gdk/gdk.mx
+++ b/gdk/gdk.mx
@@ -639,7 +639,7 @@
        str filename;           /* file containing image of the heap */
 
        char storage;           /* storage mode (mmap/malloc). */
-       unsigned char copied:1, /* a copy of an existing map. */
+       unsigned int copied:1,  /* a copy of an existing map. */
                      hashash:1,/* the string heap contains hash values */
                      forcemap:1;  /* force STORE_MMAP even if heap exists */
        chr newstorage;         /* new desired storage mode at re-allocation. */
@@ -874,7 +874,7 @@
        chr type;               /* type id. */
        chr shift;              /* log2 of bunwidth */
        bit sorted;             /* 0=false, 1=true; */
-       unsigned char 
+       unsigned int 
         varsized:1,            /* varsized(>0) or fixedsized(0). */
         key:2,                 /* duplicates allowed? */
         dense:1,               
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to