diff options
author | Daniel Stutzbach <daniel@stutzbachenterprises.com> | 2010-08-31 19:51:07 (GMT) |
---|---|---|
committer | Daniel Stutzbach <daniel@stutzbachenterprises.com> | 2010-08-31 19:51:07 (GMT) |
commit | a606faa491af05b99dba6ebafa57662cf6b451fe (patch) | |
tree | 240a19fb31ddaadd3742ea85df0b0cb4ff81badd /pyconfig.h.in | |
parent | 061b14a4a1f64532bfb4d716849ae662c09da62a (diff) | |
download | cpython-a606faa491af05b99dba6ebafa57662cf6b451fe.zip cpython-a606faa491af05b99dba6ebafa57662cf6b451fe.tar.gz cpython-a606faa491af05b99dba6ebafa57662cf6b451fe.tar.bz2 |
Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers other than MSC
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index ae3f6e4..27e77b6 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1043,6 +1043,9 @@ /* Define to 0 if you don't want to use computed gotos in ceval.c. */ #undef USE_COMPUTED_GOTOS +/* Define if the compiler supports the inline keyword */ +#undef USE_INLINE + /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE |