diff options
author | truelight <truelight@openttd.org> | 2004-08-22 14:44:03 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2004-08-22 14:44:03 +0000 |
commit | 99253905bb147f19142ab61172b22962f41c48bc (patch) | |
tree | 8ea6ee4ff7c6784296eeb0de5f8bed32811c9f81 /queue.h | |
parent | a770903df78bd144151a544775cf903f27d9a0f4 (diff) | |
download | openttd-99253905bb147f19142ab61172b22962f41c48bc.tar.xz |
(svn r108) -Fix: anon-union problems on GCC2 compilers
Diffstat (limited to 'queue.h')
-rw-r--r-- | queue.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -76,7 +76,8 @@ struct Queue{ uint blocks; /* The amount of blocks for which space is reserved in elements */
BinaryHeapNode** elements;
} binaryheap;
- };
+ } data;
+
/* If true, this struct will be free'd when the
* Queue is deleted. */
bool freeq;
|