(svn r793) Merge INLINE -> inline replacement (revision 376)

This commit is contained in:
tron
2004-11-24 13:19:48 +00:00
parent 0ea87b6473
commit fca55e3741
9 changed files with 50 additions and 51 deletions

View File

@@ -434,7 +434,7 @@ typedef struct {
// called after a new element was added in the queue at the last index.
// move it down to the proper position
static void INLINE HeapifyUp(NewTrackPathFinder *tpf)
static void inline HeapifyUp(NewTrackPathFinder *tpf)
{
StackedItem si;
int i = ++tpf->nstack;
@@ -448,7 +448,7 @@ static void INLINE HeapifyUp(NewTrackPathFinder *tpf)
}
// called after the element 0 was eaten. fill it with a new element
static void INLINE HeapifyDown(NewTrackPathFinder *tpf)
static void inline HeapifyDown(NewTrackPathFinder *tpf)
{
StackedItem si;
int i = 1, j;