pre-refine code fixed

This commit is contained in:
2011-05-24 15:45:37 +00:00
parent b47448390e
commit 375132fac9
2 changed files with 8 additions and 7 deletions
+8
View File
@@ -296,6 +296,14 @@ h5t_mark_entity (
H5_CORE_API_RETURN (h5priv_insert_idlist (&t->marked_entities, entity_id, -1));
}
h5_err_t
h5t_pre_refine (
h5_file_t* const f
) {
H5_CORE_API_ENTER1 (h5_err_t, "f=0x%p", f);
H5_CORE_API_RETURN (f->t->methods.store->pre_refine (f));
}
/*
Refine previously marked elements.
*/
-7
View File
@@ -34,13 +34,6 @@ h5tpriv_alloc_elems (
return (*f->t->methods.store->alloc_elems) (f, cur, new);
}
static inline h5_err_t
h5tpriv_pre_refine (
h5_file_t* const f
) {
return f->t->methods.store->pre_refine (f);
}
static inline h5_loc_idx_t
h5tpriv_refine_elem (
h5_file_t * const f,