summaryrefslogtreecommitdiff
path: root/include/fibheap.h
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2003-12-19 16:50:48 +0000
committerDJ Delorie <dj@delorie.com>2003-12-19 16:50:48 +0000
commit6e5fc8afd4e5613f51a2517e7d29887a287064ae (patch)
tree7ae33bdfb920bf9749fd8a5308039e6b8754616d /include/fibheap.h
parent477dd52c8a0893f3eec844cf21b56f96126e37f6 (diff)
downloadbinutils-redhat-6e5fc8afd4e5613f51a2517e7d29887a287064ae.tar.gz
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 addef19db9..4eebaf13ba 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;