summaryrefslogtreecommitdiff
path: root/Lib/csharp/std_array.i
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2022-09-08 19:50:31 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2022-09-08 19:50:31 +0100
commitc79f7f3d852a051392862f5e960e2614ee58a814 (patch)
tree3e1edf06725448e7dd7d2968479f4d122f59e0a7 /Lib/csharp/std_array.i
parent7ff686c5c153e8c37a312534280ed09dcbf030ec (diff)
parent2212af3f4f0906d84ef3aecf4812622af5f3ec7e (diff)
downloadswig-c79f7f3d852a051392862f5e960e2614ee58a814.tar.gz
Merge branch 'rvalue-move'
* rvalue-move: rvalue reference outputs Remove broken %implicitconv for const SWIGTYPE && Remove unnecessary const SWIGTYPE & typemap Temporarily remove rvalue reference python runtime test std::auto_ptr emulation fix in test case Ocaml typemap typo fix Fix Racket tests using schemerunme directory Docs on rvalue parameter changes Test/fixes to handle NULL pointer for unique_ptr/auto_ptr Octave - SWIG now marshalls a C/C++ NULL pointer into the null matrix, [] Racket - NULL pointer handling SWIGTYPE && input typemaps now assume object has been moved - Go and OCaml SWIGTYPE && input typemaps now assume object has been moved SWIGTYPE && input typemaps now assume object has been moved - Java Cosmetic stray semi-colon removal after %typemap using quotes Cosmetic stray semi-colon removal after %typemap
Diffstat (limited to 'Lib/csharp/std_array.i')
-rw-r--r--Lib/csharp/std_array.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/csharp/std_array.i b/Lib/csharp/std_array.i
index a4f0f9640..6e7fe9eb4 100644
--- a/Lib/csharp/std_array.i
+++ b/Lib/csharp/std_array.i
@@ -16,7 +16,7 @@
%define SWIG_STD_ARRAY_INTERNAL(T, N)
-%typemap(csinterfaces) std::array< T, N > "global::System.IDisposable, global::System.Collections.IEnumerable\n , global::System.Collections.Generic.IEnumerable<$typemap(cstype, T)>\n";
+%typemap(csinterfaces) std::array< T, N > "global::System.IDisposable, global::System.Collections.IEnumerable\n , global::System.Collections.Generic.IEnumerable<$typemap(cstype, T)>\n"
%proxycode %{
public $csclassname(global::System.Collections.ICollection c) : this() {
if (c == null)