use include <> instead of "" for system files
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8448 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
656dfe64ea
commit
fc67bdfa6d
13 changed files with 13 additions and 14 deletions
|
|
@ -1,6 +1,6 @@
|
|||
%module csharp_exceptions
|
||||
|
||||
%include "exception.i"
|
||||
%include <exception.i>
|
||||
|
||||
%inline %{
|
||||
class Ex {
|
||||
|
|
@ -64,7 +64,7 @@ void ExceptionSpecificationEnumReference() throw(TestEnum&) { throw TestEnumItem
|
|||
%}
|
||||
|
||||
// std::string
|
||||
%include "std_string.i"
|
||||
%include <std_string.i>
|
||||
%inline %{
|
||||
void ExceptionSpecificationStdStringValue() throw(std::string) { throw std::string("ExceptionSpecificationStdStringValue"); }
|
||||
void ExceptionSpecificationStdStringReference() throw(const std::string&) { throw std::string("ExceptionSpecificationStdStringReference"); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue