From 0f445779b95d66eb3e3cda8df125f4ffbd70d053 Mon Sep 17 00:00:00 2001 From: Art Yerkes Date: Fri, 6 Jun 2003 04:29:38 +0000 Subject: [PATCH] All test cases work. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4868 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Lib/ocaml/std_string.i | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Lib/ocaml/std_string.i b/Lib/ocaml/std_string.i index 627229c4e..3f6647f36 100644 --- a/Lib/ocaml/std_string.i +++ b/Lib/ocaml/std_string.i @@ -131,8 +131,7 @@ namespace std { } } -%template (StringVector) std::vector; - +#ifdef ENABLE_CHARPTR_ARRAY char **c_charptr_array( const std::vector &str_v ); %{ @@ -145,6 +144,10 @@ char **c_charptr_array( const std::vector &str_v ); return out; } %} +#endif + +#ifdef ENABLE_STRING_VECTOR +%template (StringVector) std::vector; %insert(ml) %{ (* Some STL convenience items *) @@ -160,3 +163,4 @@ char **c_charptr_array( const std::vector &str_v ); %insert(mli) %{ val c_string_array: string array -> c_obj %} +#endif