Author: martin.v.loewis
Date: Mon Jun 18 05:15:51 2007
New Revision: 56014

Modified:
   python/branches/p3yk/Objects/longobject.c
Log:
Drop inline, as it's not support by VS 2003.

Modified: python/branches/p3yk/Objects/longobject.c
==============================================================================
--- python/branches/p3yk/Objects/longobject.c   (original)
+++ python/branches/p3yk/Objects/longobject.c   Mon Jun 18 05:15:51 2007
@@ -24,7 +24,7 @@
 int quick_int_allocs, quick_neg_int_allocs;
 #endif
 
-static inline PyObject *
+static PyObject *
 get_small_int(int ival)
 {
        PyObject *v = (PyObject*)(small_ints + ival + NSMALLNEGINTS);
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to