1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 06:59:10 +00:00

(svn r108) -Fix: anon-union problems on GCC2 compilers

This commit is contained in:
truelight
2004-08-22 14:44:03 +00:00
parent a770903df7
commit 99253905bb
2 changed files with 81 additions and 80 deletions

View File

@@ -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;