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

View file

@ -4,6 +4,8 @@
/* Warnings for C# keywords */
#define CSHARPKW(x) %keywordwarn("'" `x` "' is a C# keyword, renaming to '_" `x` "'",rename="_%s") `x`
#define CSHARPCLASSKW(x) %keywordwarn("'" `x` "' is a special method name used in the C# wrapper classes, class renamed to '_" `x` "'",%$isclass,rename="_%s") `x`
/*
from
http://www.jaggersoft.com/csharp_grammar.html#1.7%20Keywords
@ -88,6 +90,7 @@ CSHARPKW(void);
CSHARPKW(volatile);
CSHARPKW(while);
CSHARPCLASSKW(delete);
#undef CSHARPKW