From 6b304c88d38cf2e3089127a9abc773ed362835f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 30 Dec 2004 14:23:20 +0100 Subject: [PATCH] Added FIXME. Rev: src/bignum.c:1.41 --- src/bignum.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bignum.c b/src/bignum.c index 0156143e4b..9c066ec37f 100644 --- a/src/bignum.c +++ b/src/bignum.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: bignum.c,v 1.40 2003/11/15 17:25:05 mast Exp $ +|| $Id: bignum.c,v 1.41 2004/12/30 13:23:20 grubba Exp $ */ #include "global.h" @@ -82,6 +82,7 @@ int is_bignum_object(struct object *o) PMOD_EXPORT int is_bignum_object_in_svalue(struct svalue *sv) { + /* FIXME: object subtype? */ return sv->type == T_OBJECT && is_bignum_object(sv->u.object); } -- GitLab