Fixes for c_delete and c_delete_function tests

This commit is contained in:
William S Fulton 2013-11-21 20:20:34 +00:00
commit cdefaaf794
3 changed files with 13 additions and 0 deletions

View file

@ -2,6 +2,10 @@
/* check C++ delete keyword is okay in C wrappers */
#pragma SWIG nowarn=SWIGWARN_PARSE_KEYWORD
#if !defined(SWIGOCTAVE) /* Octave compiles wrappers as C++ */
%inline %{
struct delete {
int delete;
@ -12,3 +16,5 @@ struct delete {
%inline %{
int delete = 0;
%}
#endif

View file

@ -2,6 +2,10 @@
/* check C++ delete keyword is okay in C wrappers */
#if !defined(SWIGOCTAVE) /* Octave compiles wrappers as C++ */
%inline %{
double delete(double d) { return d; }
%}
#endif