aboutsummaryrefslogtreecommitdiff
path: root/Lib/go/go.swg
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2019-10-08 15:48:26 -0700
committerHaibo Huang <hhb@google.com>2019-11-14 22:14:23 +0000
commit80b4251e302efb18c145a4786249d695397ed42a (patch)
tree12b9dec2513f7caa92e7835bc17ab16ae5635df6 /Lib/go/go.swg
parent189852d8cdfd5863c52ec7aa73affd926c5a3f43 (diff)
parent1e36f51346d95f8b9848e682c2eb986e9cb9b4f4 (diff)
downloadswig-80b4251e302efb18c145a4786249d695397ed42a.tar.gz
Upgrade swig to 'rel-4.0.1'llvm-r383902b
Also run autogen.sh to generate configure files. Exempt-From-Owner-Approval: add myself to owners Change-Id: I391aa20428836ae74dab8c8427627ca4dbc8ecf4
Diffstat (limited to 'Lib/go/go.swg')
-rw-r--r--Lib/go/go.swg11
1 files changed, 9 insertions, 2 deletions
diff --git a/Lib/go/go.swg b/Lib/go/go.swg
index 53b653f7c..c225ed9ad 100644
--- a/Lib/go/go.swg
+++ b/Lib/go/go.swg
@@ -341,8 +341,6 @@
%typemap(directorout) SWIGTYPE *
%{ $result = *($&1_ltype)&$input; %}
-%apply SWIGTYPE * { SWIGTYPE *const }
-
/* Pointer references. */
%typemap(gotype) SWIGTYPE *const&
@@ -382,6 +380,11 @@
%typemap(directorout) SWIGTYPE &
%{ *($&1_ltype)&$result = $input; %}
+%typemap(directorout, warning=SWIGWARN_TYPEMAP_DIRECTOROUT_PTR_MSG) SWIGTYPE *const&
+%{ static $*1_ltype swig_temp;
+ swig_temp = *($1_ltype)&$input;
+ $result = &swig_temp; %}
+
%typemap(gotype) SWIGTYPE &&
%{$gotypename%}
@@ -692,6 +695,10 @@
SWIGTYPE (CLASS::*)
""
+%apply SWIGTYPE * { SWIGTYPE *const }
+%apply SWIGTYPE (CLASS::*) { SWIGTYPE (CLASS::*const) }
+%apply SWIGTYPE & { SWIGTYPE (CLASS::*const&) }
+
/* Go keywords. */
%include <gokw.swg>