Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b3cc7eb7
Commit
b3cc7eb7
authored
Jun 24, 2013
by
Christian Heimes
Browse files
Options
Browse Files
Download
Plain Diff
Fix test for GCC 3.1+ but not strict ANSI C
parents
b4f39eea
e0a2d12e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Include/pymacro.h
Include/pymacro.h
+1
-1
No files found.
Include/pymacro.h
View file @
b3cc7eb7
...
...
@@ -33,7 +33,7 @@
Requires at GCC 3.1+ */
#if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && \
((
__GNUC__ == 3) && (__GNU_MINOR__ >= 1)) || (__GNUC__ >= 4
))
((
(__GNUC__ == 3) && (__GNU_MINOR__ >= 1)) || (__GNUC__ >= 4)
))
/* Two gcc extensions.
&a[0] degrades to a pointer: a different type from an array */
#define Py_ARRAY_LENGTH(array) \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment