Warning fixes in generated C# code for 64bit Visual C++ on Windows.
This commit is contained in:
parent
fb2b1af2e7
commit
236822b488
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ SWIGINTERN const char * SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
|
|||
%typemap(directorin) int "$input = $1;"
|
||||
%typemap(directorin) unsigned int "$input = $1;"
|
||||
%typemap(directorin) long "$input = $1;"
|
||||
%typemap(directorin) unsigned long "$input = $1;"
|
||||
%typemap(directorin) unsigned long "$input = (unsigned long)$1;"
|
||||
%typemap(directorin) long long "$input = $1;"
|
||||
%typemap(directorin) unsigned long long "$input = $1;"
|
||||
%typemap(directorin) float "$input = $1;"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue