| 1 |
Fixes ocaml 4 compatibility.
|
| 2 |
|
| 3 |
From upstream:
|
| 4 |
svn diff http://ocaml-extlib.googlecode.com/svn/trunk/ -c 396
|
| 5 |
|
| 6 |
Index: extlib/extHashtbl.ml
|
| 7 |
===================================================================
|
| 8 |
--- extlib/extHashtbl.ml (revision 395)
|
| 9 |
+++ extlib/extHashtbl.ml (revision 396)
|
| 10 |
@@ -32,6 +32,7 @@
|
| 11 |
}
|
| 12 |
|
| 13 |
include Hashtbl
|
| 14 |
+ let create n = Hashtbl.create (* no seed *) n
|
| 15 |
|
| 16 |
external h_conv : ('a, 'b) t -> ('a, 'b) h_t = "%identity"
|
| 17 |
external h_make : ('a, 'b) h_t -> ('a, 'b) t = "%identity"
|