diff options
author | n.d. parker <ndparker@users.noreply.github.com> | 2017-03-08 22:27:46 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2017-03-21 05:54:50 (GMT) |
commit | 07e6cbd7b9e5b6047a608cedd5cc9b20891a3972 (patch) | |
tree | e6f785b9950fe921ba12c78f14fc143c29b49e87 | |
parent | 0acdea79cba3883c5e7035c7336fb0ce54435c03 (diff) | |
download | cpython-07e6cbd7b9e5b6047a608cedd5cc9b20891a3972.zip cpython-07e6cbd7b9e5b6047a608cedd5cc9b20891a3972.tar.gz cpython-07e6cbd7b9e5b6047a608cedd5cc9b20891a3972.tar.bz2 |
Fix the only non-C90 comment to be C90 compatible. (#568)
(cherry picked from commit 51b646a55a4a1c4d0df764c4404a062fbcc6b356)
-rw-r--r-- | Include/pyport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index 52a91a0..426822a 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 |