From ce8e33447ff342859c7ffd5216e8aa793d676428 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 9 Oct 2014 10:45:25 -0700 Subject: [PATCH] Silence warning --- opal/class/opal_hash_table.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/opal/class/opal_hash_table.h b/opal/class/opal_hash_table.h index 33af63ec34..961597c209 100644 --- a/opal/class/opal_hash_table.h +++ b/opal/class/opal_hash_table.h @@ -76,6 +76,10 @@ typedef struct opal_hash_table_t opal_hash_table_t; OPAL_DECLSPEC int opal_hash_table_init(opal_hash_table_t* ht, size_t table_size); +/* this could be the new init if people wanted a more general API */ +OPAL_DECLSPEC int opal_hash_table_init2(opal_hash_table_t* ht, size_t estimated_max_size, + int density_numer, int density_denom, + int growth_numer, int growth_denom); /** * Returns the number of elements currently stored in the table.