Correct %include delimiters

This commit is contained in:
William S Fulton 2014-06-11 22:03:49 +01:00
commit 610cefd25c
2 changed files with 9 additions and 9 deletions

View file

@ -86,7 +86,7 @@
/* Array typmemaps */
/* ---------------------------------------------------------------------------*/
%include "sciarray.swg"
%include <sciarray.swg>
/* ---------------------------------------------------------------------------*/
@ -209,4 +209,4 @@
/* Exception typmemaps */
/* ---------------------------------------------------------------------------*/
%include "sciexception.swg"
%include <sciexception.swg>

View file

@ -1,8 +1,8 @@
/* initial STL definition. extended as needed in each language */
%include std_common.i
%include std_string.i
%include std_vector.i
%include std_deque.i
%include std_list.i
%include std_set.i
%include std_multiset.i
%include <std_common.i>
%include <std_string.i>
%include <std_vector.i>
%include <std_deque.i>
%include <std_list.i>
%include <std_set.i>
%include <std_multiset.i>