Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Michael Migliore
VTK
Commits
b6f61659
Commit
b6f61659
authored
Aug 19, 2010
by
David Gobbi
Browse files
COMP: Unused parameter warning.
parent
a5d439e1
Changes
1
Show whitespace changes
Inline
Side-by-side
Wrapping/vtkWrapPython.c
View file @
b6f61659
...
@@ -4821,10 +4821,10 @@ void vtkParseOutput(FILE *fp, FileInfo *file_info)
...
@@ -4821,10 +4821,10 @@ void vtkParseOutput(FILE *fp, FileInfo *file_info)
/* The function for adding everything to the module dict */
/* The function for adding everything to the module dict */
fprintf
(
fp
,
fprintf
(
fp
,
"void PyVTKAddFile_%s(
\n
"
"void PyVTKAddFile_%s(
\n
"
" PyObject *dict, const char *
modulename
)
\n
"
" PyObject *dict, const char *
%s
)
\n
"
"{
\n
"
"{
\n
"
" PyObject *o;
\n
"
,
" PyObject *o;
\n
"
,
name
);
name
,
(
data
?
"modulename"
:
""
)
);
if
(
data
&&
is_vtkobject
)
if
(
data
&&
is_vtkobject
)
{
{
...
...
Write
Preview
Supports
Markdown
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