summaryrefslogtreecommitdiff
path: root/include/fibheap.h
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-12-19 14:37:36 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-12-19 14:37:36 +0000
commit199a2f4e1d13dd444cd36e111b4d98b8fc74b1ee (patch)
treec3a0bfe928f743ff3abc8554f53f8160c4cecd57 /include/fibheap.h
parent754355026012435084d70a4f074eea9c1774805f (diff)
downloadgcc-199a2f4e1d13dd444cd36e111b4d98b8fc74b1ee.tar.gz
* include/fibheap.h (fibnode): Use __extension__ for
bit-fields mark and degree if __GNUC__. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74836 138bc75d-0d04-0410-961f-82ee72b054a4
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 addef19db95..4eebaf13ba6 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;