Use the system angle brackets for %include
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7871 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
79aedd92d7
commit
e013e7ff5a
52 changed files with 132 additions and 134 deletions
|
|
@ -11,7 +11,7 @@
|
|||
* some way.
|
||||
*/
|
||||
|
||||
%include "fragments.i"
|
||||
%include <fragments.i>
|
||||
|
||||
/* %cstring_input_binary(TYPEMAP, SIZE)
|
||||
*
|
||||
|
|
|
|||
|
|
@ -41,8 +41,8 @@
|
|||
#define SWIG_free(mem) free(mem)
|
||||
|
||||
/* Read in standard typemaps. */
|
||||
%include "swig.swg"
|
||||
%include "typemaps.i"
|
||||
%include "typecheck.i"
|
||||
%include "exception.i"
|
||||
%include "preamble.swg"
|
||||
%include <swig.swg>
|
||||
%include <typemaps.i>
|
||||
%include <typecheck.i>
|
||||
%include <exception.i>
|
||||
%include <preamble.swg>
|
||||
|
|
|
|||
|
|
@ -605,4 +605,4 @@ extern "C" {
|
|||
/* still we include the file, but the warning says that the offending
|
||||
name will be properly renamed. Just to let the user to know about
|
||||
it. */
|
||||
%include "ocamlkw.swg"
|
||||
%include <ocamlkw.swg>
|
||||
|
|
|
|||
|
|
@ -20,4 +20,4 @@
|
|||
}
|
||||
};
|
||||
|
||||
%include "_std_deque.i"
|
||||
%include <_std_deque.i>
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
//
|
||||
// Common implementation
|
||||
|
||||
%include std_common.i
|
||||
%include exception.i
|
||||
%include <std_common.i>
|
||||
%include <exception.i>
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// std::pair
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
// However, I think I'll wait until someone asks for it...
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
%include exception.i
|
||||
%include <exception.i>
|
||||
|
||||
%{
|
||||
#include <string>
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
using std::vector;
|
||||
%}
|
||||
|
||||
%include std_vector.i
|
||||
%include <std_vector.i>
|
||||
|
||||
namespace std {
|
||||
template <class charT> class basic_string {
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
// Ocaml implementation
|
||||
|
||||
%include std_common.i
|
||||
%include <std_common.i>
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// std::vector
|
||||
|
|
|
|||
|
|
@ -206,7 +206,7 @@ SIMPLE_MAP(unsigned long long,caml_val_ulong,caml_long_val);
|
|||
}
|
||||
|
||||
#if 0
|
||||
%include "carray.i"
|
||||
%include <carray.i>
|
||||
#endif
|
||||
|
||||
/* Handle char arrays as strings */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue