[Zope-dev] M$ compiler triumph

Robin Becker robin@jessikat.demon.co.uk
Fri, 8 Oct 1999 20:47:10 +0100


In message <37FE4EF0.ABFB374F@campuspipeline.com>, Kevin Butler
<kbutler@campuspipeline.com> writes
>My bet is that UNLESS is expanding to something that declares dt, as well as 
>using it.
>
>Note that I haven't looked at the code at all, but that's what the error looks 
>like...
>
>You can try running just the preprocessor on the code (cl /v?  /e?) to see 
>preprocessor output.
>
>kb
>
unfortunately I see

static PyObject *
cc_full_sweep(ccobject *self, PyObject *args)
{
  int dt=0;
  if(!(PyArg_ParseTuple(args, "|i", &dt))) return ((void *)0);
  if(!(-1 != fullgc(self,dt))) return ((void *)0);
  (((&_Py_NoneStruct))->ob_refcnt++);
  return (&_Py_NoneStruct);
}
-- 
Robin Becker