modify overloaded long long functions for runtime testing
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8421 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
8ba34a8f52
commit
f51141b75e
1 changed files with 4 additions and 4 deletions
|
|
@ -149,10 +149,10 @@ char *fid(double, double) {
|
|||
%}
|
||||
|
||||
%inline %{
|
||||
void ull() {}
|
||||
void ull(unsigned long long ull) {}
|
||||
void ll() {}
|
||||
void ll(long long ull) {}
|
||||
unsigned long long ull() { return 0ULL; }
|
||||
unsigned long long ull(unsigned long long ull) { return ull; }
|
||||
long long ll() { return 0LL; }
|
||||
long long ll(long long ull) { return ull; }
|
||||
%}
|
||||
|
||||
%include cmalloc.i
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue