muffle exception specification ignored warning (VC++). This is only for testcases that introduce exception specifications in the testcase case itself.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8400 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
032bf49f28
commit
8d9b8dbfe5
7 changed files with 42 additions and 0 deletions
|
|
@ -2,6 +2,12 @@
|
|||
|
||||
%module default_args
|
||||
|
||||
%{
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(disable: 4290) // C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
|
||||
#endif
|
||||
%}
|
||||
|
||||
%include "std_string.i"
|
||||
|
||||
%inline %{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue