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:
Marcelo Matus 2006-01-15 02:08:31 +00:00
commit fc67bdfa6d
13 changed files with 13 additions and 14 deletions

View file

@ -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"); }