diff options
author | n.d. parker <ndparker@users.noreply.github.com> | 2017-03-08 18:24:22 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-08 18:24:22 (GMT) |
commit | f7eda3882e2fa989330d71c098d3b625bb2749d3 (patch) | |
tree | c7d2c698ea7161ba652398381998dbfccbc58933 /Include | |
parent | 4a2ffce791ce18453adabcc1a2de29500f9a50aa (diff) | |
download | cpython-f7eda3882e2fa989330d71c098d3b625bb2749d3.zip cpython-f7eda3882e2fa989330d71c098d3b625bb2749d3.tar.gz cpython-f7eda3882e2fa989330d71c098d3b625bb2749d3.tar.bz2 |
Fix the only non-C90 comment to be C90 compatible. (#566)
Diffstat (limited to 'Include')
-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 684ef66..b535d78 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 |