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
Christian Butz
VTK
Commits
762c0470
Commit
762c0470
authored
Apr 30, 2010
by
David Gobbi
Committed by
Marcus D. Hanwell
Jun 16, 2010
Browse files
COMP: A recent change broke wrapping of unsigned 64-bit ints.
parent
04633829
Changes
1
Hide whitespace changes
Inline
Side-by-side
Wrapping/vtkWrapPython.c
View file @
762c0470
...
...
@@ -1721,14 +1721,10 @@ static int vtkWrapPython_MethodCheck(
if
(
argType
==
VTK_PARSE_UNSIGNED_LONG_PTR
)
args_ok
=
0
;
#ifndef VTK_SIZEOF___INT64
if
(
argType
==
VTK_PARSE___INT64
)
args_ok
=
0
;
#endif
#ifndef VTK_SIZEOF_UNSIGNED___INT64
if
(
argType
==
VTK_PARSE_UNSIGNED___INT64
)
args_ok
=
0
;
#endif
#ifndef VTK_SIZEOF_LONG_LONG
if
(
argType
==
VTK_PARSE_LONG_LONG
)
args_ok
=
0
;
#endif
#ifndef VTK_SIZEOF_UNSIGNED_LONG_LONG
if
(
argType
==
VTK_PARSE_UNSIGNED_LONG_LONG
)
args_ok
=
0
;
#endif
}
...
...
@@ -1767,14 +1763,10 @@ static int vtkWrapPython_MethodCheck(
/* eliminate types that aren't supported by the compiler */
#ifndef VTK_SIZEOF___INT64
if
(
returnType
==
VTK_PARSE___INT64
)
args_ok
=
0
;
#endif
#ifndef VTK_SIZEOF_UNSIGNED___INT64
if
(
returnType
==
VTK_PARSE_UNSIGNED___INT64
)
args_ok
=
0
;
#endif
#ifndef VTK_SIZEOF_LONG_LONG
if
(
returnType
==
VTK_PARSE_LONG_LONG
)
args_ok
=
0
;
#endif
#ifndef VTK_SIZEOF_UNSIGNED_LONG_LONG
if
(
returnType
==
VTK_PARSE_UNSIGNED_LONG_LONG
)
args_ok
=
0
;
#endif
...
...
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