diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-10-09 14:55:20 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-10-09 14:55:20 +0000 |
commit | 5554351047ed1918d6dfef640a62e742874bad7f (patch) | |
tree | 9eb28d5f5bd08566cf1a1d1d224b6e510463a142 /byterun/alloc.c | |
parent | 1248b6af826a45bd4b6213a8509e69dde4660a1b (diff) |
Suppression de Assert(wosize >= 0), guere utile car wosize est unsigned...
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3869 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/alloc.c')
-rw-r--r-- | byterun/alloc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/byterun/alloc.c b/byterun/alloc.c index 9f74d189b..fd24976ca 100644 --- a/byterun/alloc.c +++ b/byterun/alloc.c @@ -33,7 +33,6 @@ CAMLexport value alloc (mlsize_t wosize, tag_t tag) value result; mlsize_t i; - Assert (wosize >= 0); Assert (tag < 256); if (wosize == 0){ result = Atom (tag); |