A #define didn't start in column 1. Closes SF bug 113888.

This commit is contained in:
Tim Peters 2000-09-08 15:45:34 +00:00
parent e2bf7e63d6
commit 1a2eefdc4f

View file

@ -171,7 +171,7 @@ extern "C" {
* This implementation may set the underflow flag if |X| is very small;
* it really can't be implemented correctly (& easily) before C99.
*/
#define Py_IS_INFINITY(X) ((X) && (X)*0.5 == (X))
#define Py_IS_INFINITY(X) ((X) && (X)*0.5 == (X))
/**************************************************************************
Prototypes that are missing from the standard include files on some systems