From eacfad762271794965d428cacd1ce56fbc575f93 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 5 May 2013 09:04:14 -0700 Subject: Changing the queue to work in the same the array of costs is realloced. --- src/misc/vec/vecFlt.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/misc/vec/vecFlt.h') diff --git a/src/misc/vec/vecFlt.h b/src/misc/vec/vecFlt.h index 6b4b8f9b..43e34217 100644 --- a/src/misc/vec/vecFlt.h +++ b/src/misc/vec/vecFlt.h @@ -267,6 +267,10 @@ static inline float * Vec_FltArray( Vec_Flt_t * p ) { return p->pArray; } +static inline float ** Vec_FltArrayP( Vec_Flt_t * p ) +{ + return &p->pArray; +} /**Function************************************************************* -- cgit v1.2.3