Fixing gcc compilation problem.

This commit is contained in:
Alan Mishchenko 2017-01-24 20:46:03 -08:00
parent 849f180764
commit 88e887d1a0
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ struct xSAT_Heap_t_
SeeAlso []
***********************************************************************/
inline int xSAT_HeapSize( xSAT_Heap_t * h )
static inline int xSAT_HeapSize( xSAT_Heap_t * h )
{
return Vec_IntSize( h->vHeap );
}
@ -64,7 +64,7 @@ inline int xSAT_HeapSize( xSAT_Heap_t * h )
SeeAlso []
***********************************************************************/
inline int xSAT_HeapInHeap( xSAT_Heap_t * h, int Var )
static inline int xSAT_HeapInHeap( xSAT_Heap_t * h, int Var )
{
return ( Var < Vec_IntSize( h->vIndices ) ) && ( Vec_IntEntry( h->vIndices, Var ) >= 0 );
}