Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
e3974396
Commit
e3974396
authored
Apr 14, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
suppress some C compiler warnings about unused function arguments
parent
7714476a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
Cython/Utility/Capsule.c
Cython/Utility/Capsule.c
+3
-1
Cython/Utility/MemoryView_C.c
Cython/Utility/MemoryView_C.c
+1
-2
No files found.
Cython/Utility/Capsule.c
View file @
e3974396
//////////////// Capsule.proto ////////////////
//////////////// Capsule.proto ////////////////
/* Todo: wrap the rest of the functionality in similar functions */
/* Todo: wrap the rest of the functionality in similar functions */
static
CYTHON_INLINE
PyObject
*
__pyx_capsule_create
(
void
*
p
,
const
char
*
sig
);
static
CYTHON_INLINE
PyObject
*
__pyx_capsule_create
(
void
*
p
,
const
char
*
sig
);
//////////////// Capsule ////////////////
//////////////// Capsule ////////////////
static
CYTHON_INLINE
PyObject
*
static
CYTHON_INLINE
PyObject
*
__pyx_capsule_create
(
void
*
p
,
const
char
*
sig
)
__pyx_capsule_create
(
void
*
p
,
CYTHON_UNUSED
const
char
*
sig
)
{
{
PyObject
*
cobj
;
PyObject
*
cobj
;
...
...
Cython/Utility/MemoryView_C.c
View file @
e3974396
...
@@ -218,9 +218,8 @@ fail:
...
@@ -218,9 +218,8 @@ fail:
}
}
static
int
static
int
__pyx_check_suboffsets
(
Py_buffer
*
buf
,
int
dim
,
int
ndim
,
int
spec
)
__pyx_check_suboffsets
(
Py_buffer
*
buf
,
int
dim
,
CYTHON_UNUSED
int
ndim
,
int
spec
)
{
{
// Todo: without PyBUF_INDIRECT we may not have suboffset information, i.e., the
// Todo: without PyBUF_INDIRECT we may not have suboffset information, i.e., the
// ptr may not be set to NULL but may be uninitialized?
// ptr may not be set to NULL but may be uninitialized?
if
(
spec
&
__Pyx_MEMVIEW_DIRECT
)
{
if
(
spec
&
__Pyx_MEMVIEW_DIRECT
)
{
...
...
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