summaryrefslogtreecommitdiffstats
path: root/include/fibheap.h
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2003-12-19 16:50:48 +0000
committerDJ Delorie <dj@redhat.com>2003-12-19 16:50:48 +0000
commit76f1afec34733e145c94c5d4aefc98ef9381f5b4 (patch)
treed4d355aaa7e12233e817f8e0b1feb1082a2949d4 /include/fibheap.h
parent08bf2e60dee606b94dfad86ee2a74cb69cb664f9 (diff)
downloadcygnal-76f1afec34733e145c94c5d4aefc98ef9381f5b4.tar.gz
cygnal-76f1afec34733e145c94c5d4aefc98ef9381f5b4.tar.bz2
cygnal-76f1afec34733e145c94c5d4aefc98ef9381f5b4.zip
merge from gcc
Diffstat (limited to 'include/fibheap.h')
-rw-r--r--include/fibheap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fibheap.h b/include/fibheap.h
index addef19db..4eebaf13b 100644
--- a/include/fibheap.h
+++ b/include/fibheap.h
@@ -60,8 +60,8 @@ typedef struct fibnode
fibheapkey_t key;
void *data;
#ifdef __GNUC__
- unsigned long int degree : 31;
- unsigned long int mark : 1;
+ __extension__ unsigned long int degree : 31;
+ __extension__ unsigned long int mark : 1;
#else
unsigned int degree : 31;
unsigned int mark : 1;