branches/zip: Make dtuple_big_rec_free() an inline function.

This commit is contained in:
marko 2007-03-28 18:31:16 +00:00
parent 1cd528122e
commit e4d8b192fe
3 changed files with 13 additions and 13 deletions

View file

@ -652,15 +652,3 @@ dtuple_convert_back_big_rec(
mem_heap_free(vector->heap);
}
/******************************************************************
Frees the memory in a big rec vector. */
void
dtuple_big_rec_free(
/*================*/
big_rec_t* vector) /* in, own: big rec vector; it is
freed in this function */
{
mem_heap_free(vector->heap);
}

View file

@ -373,7 +373,7 @@ dtuple_convert_back_big_rec(
freed in this function */
/******************************************************************
Frees the memory in a big rec vector. */
UNIV_INLINE
void
dtuple_big_rec_free(
/*================*/

View file

@ -438,3 +438,15 @@ dtuple_contains_null(
return(FALSE);
}
/******************************************************************
Frees the memory in a big rec vector. */
UNIV_INLINE
void
dtuple_big_rec_free(
/*================*/
big_rec_t* vector) /* in, own: big rec vector; it is
freed in this function */
{
mem_heap_free(vector->heap);
}