Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
L
ligo-segments
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lscsoft
ligo-segments
Commits
6a8abe27
Commit
6a8abe27
authored
Jan 09, 2019
by
Kipp Cannon
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
six.h: remove inline keyword
parent
577e80c2
Pipeline
#44054
failed with stages
in 1 minute and 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/six.h
src/six.h
+2
-2
No files found.
src/six.h
View file @
6a8abe27
...
...
@@ -48,7 +48,7 @@ typedef struct PyModuleDef {
#define PyModuleDef_HEAD_INIT 0
static
inline
PyObject
*
PyModule_Create
(
PyModuleDef
*
def
)
static
PyObject
*
PyModule_Create
(
PyModuleDef
*
def
)
{
(
void
)
PyModule_Create
;
/* Suppress unused function warning */
...
...
@@ -61,7 +61,7 @@ static inline PyObject *PyModule_Create(PyModuleDef *def)
return
Py_InitModule3
(
def
->
m_name
,
def
->
m_methods
,
def
->
m_doc
);
}
static
inline
PyObject
*
PyModule_Create2
(
PyModuleDef
*
def
,
int
module_api_version
)
static
PyObject
*
PyModule_Create2
(
PyModuleDef
*
def
,
int
module_api_version
)
{
(
void
)
PyModule_Create2
;
/* Suppress unused function warning */
...
...
Kipp Cannon
@kipp.cannon
mentioned in issue
#1 (closed)
·
Jan 09, 2019
mentioned in issue
#1 (closed)
mentioned in issue #1
Toggle commit list
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