aboutsummaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ocaml/std_string.i8
1 files 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<string >;
-
+#ifdef ENABLE_CHARPTR_ARRAY
char **c_charptr_array( const std::vector <string > &str_v );
%{
@@ -145,6 +144,10 @@ char **c_charptr_array( const std::vector <string > &str_v );
return out;
}
%}
+#endif
+
+#ifdef ENABLE_STRING_VECTOR
+%template (StringVector) std::vector<string >;
%insert(ml) %{
(* Some STL convenience items *)
@@ -160,3 +163,4 @@ char **c_charptr_array( const std::vector <string > &str_v );
%insert(mli) %{
val c_string_array: string array -> c_obj
%}
+#endif