summaryrefslogtreecommitdiffstats
path: root/src/H5I.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5I.c')
-rw-r--r--src/H5I.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5I.c b/src/H5I.c
index 2de9b25..91c8b1a 100644
--- a/src/H5I.c
+++ b/src/H5I.c
@@ -159,11 +159,7 @@ H5I_init_interface(void)
* Make certain the ID types don't overflow the number of bits allocated
* for them in an ID.
*/
-#if 0
- assert((int)H5I_MAXID<=(int)pow((double)2.0,(double)GROUP_BITS));
-#else
assert(H5I_MAXID<=(1<<GROUP_BITS));
-#endif
/* Registers the cleanup routine with the exit chain */
ret_value = H5_add_exit(&H5I_term_interface);