From 0efb2e680bd4a1c2db1e11c98baa15465c34c54c Mon Sep 17 00:00:00 2001 From: ndparker Date: Wed, 8 Mar 2017 19:02:36 +0100 Subject: [PATCH] Fix the only non-C90 comment to be C90 compatible. --- Include/pyport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pyport.h b/Include/pyport.h index 684ef662af0b6a..b535d7859ac6df 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -37,7 +37,7 @@ Used in: Py_SAFE_DOWNCAST * integral synonyms. Only define the ones we actually need. */ -// long long is required. Ensure HAVE_LONG_LONG is defined for compatibility. +/* long long is required. Ensure HAVE_LONG_LONG is defined for compatibility. */ #ifndef HAVE_LONG_LONG #define HAVE_LONG_LONG 1 #endif