From 76f1afec34733e145c94c5d4aefc98ef9381f5b4 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Fri, 19 Dec 2003 16:50:48 +0000 Subject: merge from gcc --- include/fibheap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/fibheap.h') 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; -- cgit v1.2.3